There was an error while loading. Please reload this page.
1 parent d0f42ec commit b8b3ec8Copy full SHA for b8b3ec8
1 file changed
.github/workflows/cut-release.yml
@@ -11,10 +11,20 @@ jobs:
11
permissions:
12
contents: write
13
steps:
14
+ - name: Mint App installation token
15
+ id: app-token
16
+ uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1.12.0
17
+ with:
18
+ app-id: ${{ secrets.APP_ID }}
19
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
20
+ owner: ${{ github.repository_owner }}
21
+ repositories: ${{ github.event.repository.name }}
22
+ permission-contents: write
23
+
24
- uses: actions/checkout@v7.0.0
25
with:
26
fetch-depth: 0 # need full tag history to compute the next serial
- token: ${{ secrets.BOT_TOKEN }}
27
+ token: ${{ steps.app-token.outputs.token }}
28
persist-credentials: true
29
30
- name: Compute CalVer tag
0 commit comments