Skip to content

Commit

Permalink
chore: Update build workflow to use RELEASE_TOKEN instead of GITHUB_T…
Browse files Browse the repository at this point in the history
…OKEN
  • Loading branch information
HomeArchbishop committed Jul 28, 2024
1 parent 7712864 commit 0b665f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Upload .zip Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: .\dist.zip
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Upload start.exe files
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: .\dist\start.exe
Expand Down

0 comments on commit 0b665f6

Please sign in to comment.