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 64f3e26Copy full SHA for 64f3e26
.github/workflows/semantic-release.yml
@@ -15,11 +15,19 @@ jobs:
15
with:
16
persist-credentials: false
17
18
+ - uses: 040code/app-token-action@v1
19
+ id: get-token
20
+ with:
21
+ appId: "${{ secrets.SEMANTIC_RELEASE_APP_ID }}"
22
+ appPrivateKeyBase64: "${{ secrets.SEMANTIC_RELEASE_PRIVATE_KEY_B64 }}"
23
+ appInstallationType: org
24
+ appInstallationValue: haskell-github-trust
25
+
26
- name: Semantic release
27
id: semantic
28
uses: cycjimmy/semantic-release-action@v4
29
env:
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
30
+ GH_TOKEN: ${{ steps.get-token.outputs.token }}
31
HACKAGE_KEY: ${{ secrets.HACKAGE_TOKEN }}
32
33
0 commit comments