Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Nov 14, 2023
1 parent 330f9ce commit 6fe480b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo '{}' > package.json
- name: Set up node & pnpm
uses: wyvox/action-setup-pnpm@v3
- name: Set up node
uses: actions/setup-node@v4
- name: Install dependencies (chrome-webstore-upload-cli)
run: pnpm install -g chrome-webstore-upload-cli
run: npm install -g chrome-webstore-upload-cli
- name: Download artifacts (Chrome)
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -291,13 +291,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo '{}' > package.json
- name: Set up node & pnpm
uses: wyvox/action-setup-pnpm@v3
- name: Set up nod
uses: actions/setup-node@v4
- name: Install dependencies (web-ext)
run: |
npm install -g web-ext
# https://github.com/mozilla/web-ext/issues/804
pnpm install -g web-ext-submit
npm install -g web-ext-submit
- name: Download artifacts (Firefox)
uses: actions/download-artifact@v3
with:
Expand All @@ -320,8 +320,8 @@ jobs:
- build
runs-on: ubuntu-latest
steps:
- name: Set up node & pnpm
uses: wyvox/action-setup-pnpm@v3
- name: Set up node
uses: actions/setup-node@v4
- name: Set up NPM
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}"> ~/.npmrc
Expand Down

0 comments on commit 6fe480b

Please sign in to comment.