Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Dec 17, 2023
1 parent d1957f6 commit 06bdb3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: pnpm install

- name: Build extension
run: FF_ID=${{ env.FF_ID }} pnpm build:prod
run: FF_ID=${{ vars.FF_ID }} pnpm build:prod

- name: Zip the build
run: |
Expand All @@ -41,21 +41,21 @@ jobs:
client_id: ${{ secrets.CHROME_CLIENT_ID }}
client_secret: ${{ secrets.CHROME_CLIENT_SECRET }}
refresh_token: ${{ secrets.CHROME_REFRESH_TOKEN }}
extension_id: ${{ env.CHROME_ID }}
extension_id: ${{ vars.CHROME_ID }}
zip_file: build.zip

- name: Firefox upload & release
uses: cardinalby/[email protected]
with:
zipFilePath: build.zip
extensionId: ${{ env.FF_ID }}
extensionId: ${{ vars.FF_ID }}
jwtIssuer: ${{ secrets.FF_JWT_ISSUER }}
jwtSecret: ${{ secrets.FF_JWT_SECRET }}

- name: Edge upload & release
uses: wdzeng/[email protected]
with:
product-id: ${{ env.EDGE_ID }}
product-id: ${{ vars.EDGE_ID }}
zip-path: build.zip
client-id: ${{ secrets.EDGE_CLIENT_ID }}
client-secret: ${{ secrets.EDGE_CLIENT_SECRET }}
Expand Down

0 comments on commit 06bdb3b

Please sign in to comment.