Skip to content

Commit

Permalink
ci: use actions/create-github-app-token for release workflow (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers authored Jul 17, 2024
1 parent 37f05b7 commit 0e9a396
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3
id: token
with:
app-id: ${{ vars.FOREST_RELEASER_APP_ID }}
private-key: ${{ secrets.FOREST_RELEASER_APP_PRIVATE_KEY }}
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3
id: release
with:
token: ${{ secrets.AUTOMATIC_RELEASE_TOKEN }}
token: ${{ steps.token.outputs.token }}

0 comments on commit 0e9a396

Please sign in to comment.