diff --git a/.github/workflows/submit-beta.yml b/.github/workflows/submit-beta.yml index dfcbfebe3..ff616bfe4 100644 --- a/.github/workflows/submit-beta.yml +++ b/.github/workflows/submit-beta.yml @@ -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' diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml index 2a981a3a5..72cfe7da4 100644 --- a/.github/workflows/submit.yml +++ b/.github/workflows/submit.yml @@ -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'