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 398803c commit 115ae2aCopy full SHA for 115ae2a
.github/workflows/semantic-release.yml
@@ -15,11 +15,17 @@ jobs:
15
with:
16
persist-credentials: false
17
18
+ - uses: actions/create-github-app-token@v2
19
+ id: app-token
20
+ with:
21
+ app-id: "${{ secrets.SEMANTIC_RELEASE_APP_ID }}"
22
+ private-key: "${{ secrets.SEMANTIC_RELEASE_PRIVATE_KEY }}"
23
+
24
- name: Semantic release
25
id: semantic
26
uses: cycjimmy/semantic-release-action@v4
27
env:
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
28
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
29
HACKAGE_KEY: ${{ secrets.HACKAGE_TOKEN }}
30
31
0 commit comments