We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db3218 commit 3e0e8b7Copy full SHA for 3e0e8b7
.github/workflows/publish.yml
@@ -11,12 +11,18 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
+ - name: Generate token from GitHub App
15
+ id: generate-token
16
+ uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf #2.2.1
17
+ with:
18
+ app-id: ${{ secrets.SEQUESTER_APPID }}
19
+ private-key: ${{ secrets.SEQUESTER_PRIVATEKEY }}
20
21
- name: Checkout repository
22
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 #@v4.2.1
23
with:
24
fetch-depth: 0
- token: ${{ secrets.PUBLISH }}
25
+ token: ${{ steps.generate-token.outputs.token }}
26
27
- name: Configure git
28
run: |
0 commit comments