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 fb1eb32Copy full SHA for fb1eb32
.github/workflows/semantic-release.yml
@@ -15,11 +15,17 @@ jobs:
15
with:
16
persist-credentials: false
17
18
+ - uses: navikt/github-app-token-generator@v1
19
+ id: get-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.get-token.outputs.token }}
29
HACKAGE_KEY: ${{ secrets.HACKAGE_TOKEN }}
30
31
0 commit comments