Skip to content

Commit 253921b

Browse files
add github token
1 parent cdbfa42 commit 253921b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
3636
- name: Create Github release
3737
if: steps.check_tag.outputs.exists == 'false'
38+
env:
39+
GH_TOKEN: ${{ github.token }}
3840
run: |
3941
gh release create "$version" --latest --title "$version" --generate-notes
4042
@@ -54,6 +56,8 @@ jobs:
5456
zip -r ../dist/Chrome.zip .
5557
5658
- name: Upload Chrome artifact
59+
env:
60+
GH_TOKEN: ${{ github.token }}
5761
run: |
5862
gh release upload ${{needs.tag.outputs.tag_version}} dist/Chrome.zip
5963
@@ -73,5 +77,7 @@ jobs:
7377
zip -r ../dist/Firefox.zip .
7478
7579
- name: Upload Firefox artifact
80+
env:
81+
GH_TOKEN: ${{ github.token }}
7682
run: |
7783
gh release upload ${{needs.tag.outputs.tag_version}} dist/Firefox.zip

0 commit comments

Comments
 (0)