Skip to content

Commit 79fdce9

Browse files
committed
fix: fix bypass rules
1 parent 48e5775 commit 79fdce9

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,20 @@ jobs:
3131
with:
3232
node-version: "24"
3333

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+
3440
- id: semantic
3541
uses: cycjimmy/semantic-release-action@v4
3642
with:
3743
extra_plugins: |
3844
@semantic-release/changelog
3945
@semantic-release/git
4046
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
GITHUB_TOKEN: ${{ steps.app.outputs.token }}
4248

4349
goreleaser:
4450
if: github.repository == 'user-cube/cluster-bootstrap' && needs.release.outputs.new-release == 'true'

0 commit comments

Comments
 (0)