We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdbfa42 commit 253921bCopy full SHA for 253921b
.github/workflows/release.yml
@@ -35,6 +35,8 @@ jobs:
35
36
- name: Create Github release
37
if: steps.check_tag.outputs.exists == 'false'
38
+ env:
39
+ GH_TOKEN: ${{ github.token }}
40
run: |
41
gh release create "$version" --latest --title "$version" --generate-notes
42
@@ -54,6 +56,8 @@ jobs:
54
56
zip -r ../dist/Chrome.zip .
55
57
58
- name: Upload Chrome artifact
59
60
61
62
gh release upload ${{needs.tag.outputs.tag_version}} dist/Chrome.zip
63
@@ -73,5 +77,7 @@ jobs:
73
77
zip -r ../dist/Firefox.zip .
74
78
75
79
- name: Upload Firefox artifact
80
81
76
82
83
gh release upload ${{needs.tag.outputs.tag_version}} dist/Firefox.zip
0 commit comments