We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f8c7d0 commit 8e7b0b9Copy full SHA for 8e7b0b9
.github/workflows/release.yml
@@ -11,9 +11,15 @@ jobs:
11
contents: write
12
13
steps:
14
+ - uses: actions/create-github-app-token@v1
15
+ id: app-token
16
+ with:
17
+ app-id: ${{ vars.APP_ID }}
18
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
19
- uses: actions/checkout@v4
20
with:
- token: ${{ secrets.WORKFLOW_TOKEN }}
21
+ token: ${{ steps.app-token.outputs.token }}
22
+ persist-credentials: false
23
- name: Use Node.js 22.x
24
uses: actions/setup-node@v4
25
0 commit comments