We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e5775 commit 79fdce9Copy full SHA for 79fdce9
1 file changed
.github/workflows/release.yml
@@ -31,14 +31,20 @@ jobs:
31
with:
32
node-version: "24"
33
34
+ - uses: actions/create-github-app-token@v2
35
+ id: app
36
+ with:
37
+ app-id: ${{ secrets.DEVOPS_BUDDY_APP_ID }}
38
+ private-key: ${{ secrets.DEVOPS_BUDDY_PRIVATE_KEY }}
39
+
40
- id: semantic
41
uses: cycjimmy/semantic-release-action@v4
42
43
extra_plugins: |
44
@semantic-release/changelog
45
@semantic-release/git
46
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
+ GITHUB_TOKEN: ${{ steps.app.outputs.token }}
48
49
goreleaser:
50
if: github.repository == 'user-cube/cluster-bootstrap' && needs.release.outputs.new-release == 'true'
0 commit comments