Skip to content

Commit c77ec64

Browse files
committed
chore: fix workflow
1 parent 953f616 commit c77ec64

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
run: npm install --force
2424
- name: Build/release
2525
run: npm run publish:linux
26+
env:
27+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2628
build-on-mac:
2729
runs-on: macos-latest
2830
strategy:
@@ -38,6 +40,8 @@ jobs:
3840
run: npm install --force
3941
- name: Build/release
4042
run: npm run publish:mac
43+
env:
44+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4145
build-on-win:
4246
runs-on: window-latest
4347
strategy:
@@ -52,4 +56,6 @@ jobs:
5256
- name: Install
5357
run: npm install --force
5458
- name: Build/release
55-
run: npm run publish:win
59+
run: npm run publish:win
60+
env:
61+
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)