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 4bd995aCopy full SHA for 4bd995a
.github/workflows/semantic-release.yml
@@ -15,12 +15,18 @@ 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
+ GH_TOKEN: "x-access-token:${{ steps.app-token.outputs.token }}"
29
+ HACKAGE_KEY: "${{ secrets.HACKAGE_TOKEN }}"
30
31
32
ci: ${{ github.ref == 'refs/heads/main' }}
0 commit comments