Skip to content

Commit

Permalink
chore: Use GitHub App token for release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
konradasb committed Nov 4, 2024
1 parent c527c82 commit 7490ad0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Get GitHub token
uses: actions/create-github-app-token@v1
id: get_token
with:
app-id: ${{ secrets.HOSTINGERBOT_APP_ID }}
private-key: ${{ secrets.HOSTINGERBOT_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: |
fireactions-images
- name: Run release-please
uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ steps.get_token.outputs.token }}

0 comments on commit 7490ad0

Please sign in to comment.