We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076194c commit 16ee364Copy full SHA for 16ee364
.github/workflows/release-please.yml
@@ -47,7 +47,16 @@ jobs:
47
persist-credentials: false
48
fetch-depth: 0
49
- uses: ./.github/actions/setup
50
+ - uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
51
+ id: app-token
52
+ with:
53
+ app-id: ${{ secrets.HOMEBREW_TAP_APP_ID }}
54
+ private-key: ${{ secrets.HOMEBREW_TAP_APP_PRIVATE_KEY }}
55
+ owner: ${{ github.repository_owner }}
56
+ repositories: homebrew-tap
57
+ permission-contents: write
58
+
59
- run: goreleaser release --clean
60
env:
61
GITHUB_TOKEN: ${{ github.token }}
- TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}
62
+ TAP_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
0 commit comments