Skip to content

Commit

Permalink
Update secret token in build-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CuberHuber authored Nov 21, 2024
1 parent 369c5d2 commit 4b94248
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PLUGIN_RELEASE_TOKEN }}
with:
tag_name: ${{ steps.get_date.outputs.TAG_NAME }}
release_name: Release ${{ steps.get_date.outputs.TAG_NAME }}
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Upload config.json to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PLUGIN_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{env.CONFIG_FILE}}
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Upload config.json to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PLUGIN_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: './plugin.xml'
Expand Down

0 comments on commit 4b94248

Please sign in to comment.