Skip to content

Commit

Permalink
chore: use PAT in creating release
Browse files Browse the repository at this point in the history
Otherwise publish on release will not trigger.
  • Loading branch information
tkurki committed May 10, 2022
1 parent af16d20 commit 0c3243d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: github_release
uses: mikepenz/release-changelog-builder-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}

- name: Create Release
uses: actions/create-release@v1
Expand All @@ -24,4 +24,4 @@ jobs:
release_name: ${{ github.ref }}
body: ${{steps.github_release.outputs.changelog}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}

0 comments on commit 0c3243d

Please sign in to comment.