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 ec1734a commit 1ecf1a7Copy full SHA for 1ecf1a7
.github/workflows/release.yml
@@ -12,6 +12,13 @@ jobs:
12
runs-on: ubuntu-latest
13
if: ${{ github.event.workflow_run.conclusion == 'success' }}
14
steps:
15
+ - name: 'Generate token'
16
+ id: generate_token
17
+ uses: tibdex/github-app-token@v1
18
+ with:
19
+ app_id: ${{ secrets.BOT_APP_ID }}
20
+ private_key: ${{ secrets.BOT_PRIVATE_KEY }
21
+
22
- name: Checkout repository
23
uses: actions/checkout@v4
24
@@ -51,7 +58,5 @@ jobs:
51
58
52
59
- name: Semantic Release
53
60
env:
54
- GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
55
- GIT_COMMITTER_EMAIL: [email protected]
56
- GIT_AUTHOR_EMAIL: [email protected]
61
+ GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
57
62
run: npx semantic-release
0 commit comments