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 07993a4Copy full SHA for 07993a4
.github/workflows/semantic-release.yml
@@ -15,12 +15,19 @@ 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 }}
- HACKAGE_KEY: ${{ secrets.HACKAGE_TOKEN }}
28
+ GITHUB_ACTION: "yes"
29
+ GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
30
+ HACKAGE_KEY: "${{ secrets.HACKAGE_TOKEN }}"
31
32
33
ci: ${{ github.ref == 'refs/heads/main' }}
0 commit comments