Skip to content

Commit

Permalink
Merge pull request #122 from eyereasoner/jeswr-patch-1
Browse files Browse the repository at this point in the history
chore: don't require external GH token for release
  • Loading branch information
josd authored Jan 2, 2025
2 parents 40b9dcd + 2bc5943 commit d4ad26e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
name: "Tagged Release"
runs-on: "ubuntu-latest"
permissions:
contents: write
pull-requests: write
repository-projects: write
pages: write
issues: write

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GH_TOKEN }}"
repo_token: "${{ github.token }}"
automatic_release_tag: "${{ github.ref_name }}"
prerelease: false
files: "*"

0 comments on commit d4ad26e

Please sign in to comment.