Skip to content

Commit

Permalink
Fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Mar 11, 2024
1 parent 896b571 commit 26d0718
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,15 @@ jobs:
run: pnpm install --frozen-lockfile=false

- name: Build extension
run: cd holo-key-manager-extension && pnpm build
run: pnpm build
working-directory: holo-key-manager-extension

- name: Zip the build
run: |
cd holo-key-manager-extension/build
cd build
zip -r ../build.zip .
cd ..
working-directory: holo-key-manager-extension

- name: Chrome upload & release
uses: mobilefirstllc/cws-publish@latest
Expand All @@ -86,16 +88,19 @@ jobs:
access-token-url: ${{ secrets.EDGE_ACCESS_TOKEN_URL }}

- name: Replace manifest
run: cd holo-key-manager-extension && pnpm build:replaceForFirefox ${{ vars.FF_ID }}
run: pnpm build:replaceForFirefox ${{ vars.FF_ID }}
working-directory: holo-key-manager-extension

- name: Build extension
run: cd holo-key-manager-extension && pnpm build
run: pnpm build
working-directory: holo-key-manager-extension

- name: Zip the build
run: |
cd holo-key-manager-extension/build
cd build
zip -r ../buildFF.zip .
cd ..
working-directory: holo-key-manager-extension

- name: Firefox upload & release
uses: cardinalby/[email protected]
Expand Down

0 comments on commit 26d0718

Please sign in to comment.