Skip to content

Commit

Permalink
chore: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
geolffreym committed Jun 13, 2024
1 parent 953f616 commit c77ec64
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
run: npm install --force
- name: Build/release
run: npm run publish:linux
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
build-on-mac:
runs-on: macos-latest
strategy:
Expand All @@ -38,6 +40,8 @@ jobs:
run: npm install --force
- name: Build/release
run: npm run publish:mac
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
build-on-win:
runs-on: window-latest
strategy:
Expand All @@ -52,4 +56,6 @@ jobs:
- name: Install
run: npm install --force
- name: Build/release
run: npm run publish:win
run: npm run publish:win
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit c77ec64

Please sign in to comment.