Skip to content

Commit

Permalink
fix: add missing PLASMO_PUBLIC_APP_TYPE to .env
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Dec 28, 2024
1 parent 35808ee commit 75e424d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/submit-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Create .env file
run: echo "PLASMO_PUBLIC_TRANSAK_API_KEY=${{ secrets.TRANSAK_API_KEY }}" >> .env
run: |
echo "PLASMO_PUBLIC_TRANSAK_API_KEY=${{ secrets.TRANSAK_API_KEY }}" >> .env
echo "PLASMO_PUBLIC_APP_TYPE=extension" >> .env
- name: Modify package.json and icons for BETA
if: github.ref == 'refs/heads/staging'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Create .env file
run: echo "PLASMO_PUBLIC_TRANSAK_API_KEY=${{ secrets.TRANSAK_API_KEY }}" >> .env
run: |
echo "PLASMO_PUBLIC_TRANSAK_API_KEY=${{ secrets.TRANSAK_API_KEY }}" >> .env
echo "PLASMO_PUBLIC_APP_TYPE=extension" >> .env
- name: Modify package.json and icons for BETA
if: github.ref == 'refs/heads/staging'
Expand Down

0 comments on commit 75e424d

Please sign in to comment.