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 71bd813 commit cb57722Copy full SHA for cb57722
.github/workflows/publish.yml
@@ -23,10 +23,17 @@ jobs:
23
timeout-minutes: 10
24
environment: npm-registry
25
steps:
26
+ - name: Generate token
27
+ id: generate_token
28
+ uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
29
+ with:
30
+ app-id: ${{ vars.GH_APP_ID }}
31
+ private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
32
+
33
- name: Checkout Repository
34
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
35
with:
- persist-credentials: false
36
+ token: ${{ steps.generate_token.outputs.token }}
37
38
- name: Initialize
39
uses: ./.github/actions/setup-environment
0 commit comments