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 15df122 commit b3a7561Copy full SHA for b3a7561
.github/workflows/semantic-release.yml
@@ -29,7 +29,13 @@ jobs:
29
with:
30
fetch-depth: 0
31
persist-credentials: false
32
- token: ${{ secrets.GITHUB_TOKEN }}
+
33
+ - name: Generate token
34
+ id: generate_token
35
+ uses: tibdex/github-app-token@v2
36
+ with:
37
+ app_id: ${{ secrets.BOT_APP_ID }}
38
+ private_key: ${{ secrets.BOT_PRIVATE_KEY }}
39
40
- name: Install pnpm
41
uses: pnpm/action-setup@v4
@@ -50,7 +56,7 @@ jobs:
50
56
id: semantic
51
57
uses: cycjimmy/semantic-release-action@v4
52
58
env:
53
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+ GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
54
60
55
61
- name: Install uv with caching
62
if: steps.semantic.outputs.new_release_published == 'true'
0 commit comments