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 2819bc6 commit 1322f71Copy full SHA for 1322f71
.github/workflows/release.yml
@@ -54,6 +54,11 @@ jobs:
54
runs-on: ubuntu-latest
55
needs: isthmus-native-image-mac-linux
56
steps:
57
+ - uses: actions/create-github-app-token@v2
58
+ id: app-token
59
+ with:
60
+ app-id: ${{ secrets.RELEASER_ID }}
61
+ private-key: ${{ secrets.RELEASER_KEY }}
62
- name: Checkout code
63
uses: actions/checkout@v5
64
with:
@@ -81,7 +86,7 @@ jobs:
81
86
- name: Run semantic-release
82
87
run: ./ci/release/run.sh
83
88
env:
84
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
85
90
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
91
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
92
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
0 commit comments