Skip to content

Commit 88e79af

Browse files
committed
fix workflows
1 parent b53c4d1 commit 88e79af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: create_release
3535
uses: actions/create-release@v1
3636
env:
37-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
37+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
3838
with:
3939
tag_name: ${{ github.ref }}
4040
release_name: Release ${{ github.ref }}
@@ -44,7 +44,7 @@ jobs:
4444
- name: Upload Release Assets
4545
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' || matrix.os == 'windows-latest' }}
4646
env:
47-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
47+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
4848
run: |
4949
for file in dist/*.{exe,dmg,AppImage}; do
5050
if [[ -f "$file" ]]; then

0 commit comments

Comments
 (0)