Skip to content

Commit

Permalink
use env for github token instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Oct 2, 2024
1 parent d1ec739 commit b7c9283
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
asset_path: ${{ env.TARBALL_PATH }}
asset_name: clboss-${{ github.event.release.tag_name }}.tar.gz
asset_content_type: application/gzip
github_access_token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Upload .zip release asset
uses: actions/upload-release-asset@v1
Expand All @@ -70,4 +71,5 @@ jobs:
asset_path: ${{ env.ZIP_PATH }}
asset_name: clboss-${{ github.event.release.tag_name }}.zip
asset_content_type: application/zip
github_access_token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 comments on commit b7c9283

Please sign in to comment.