We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e46bc commit 97f90b6Copy full SHA for 97f90b6
1 file changed
.github/workflows/release.yaml
@@ -9,10 +9,17 @@ jobs:
9
runs-on: ubuntu-latest
10
11
steps:
12
+ - name: Generate GitHub App Token
13
+ uses: actions/create-github-app-token@v1
14
+ id: generate-token
15
+ with:
16
+ app-id: ${{ secrets.GH_APP_ID }}
17
+ private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
18
+
19
- name: Checkout
20
uses: actions/checkout@v2
21
with:
- token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
22
+ token: ${{ steps.generate-token.outputs.token }}
23
24
- name: Identify
25
run: |
0 commit comments