Skip to content

Commit

Permalink
ci: Try using GITHUB_TOKEN instead of a PAT to finish releases
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanty committed Jan 2, 2025
1 parent d834772 commit d8e305e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/add_release_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ jobs:
release:
needs: [build-artifacts, get-tag]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
Expand All @@ -94,4 +96,4 @@ jobs:
gh release upload ${{ needs.get-tag.outputs.tag_name }} *
gh release edit ${{ needs.get-tag.outputs.tag_name }} --draft=false --latest
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d8e305e

Please sign in to comment.