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 a151c34 commit d7f02f0Copy full SHA for d7f02f0
.github/workflows/deploy.yml
@@ -43,10 +43,16 @@ jobs:
43
needs: build
44
45
steps:
46
+ - uses: actions/create-github-app-token@v1
47
+ id: app-token
48
+ with:
49
+ app-id: ${{ vars.APP_ID }}
50
+ private-key: ${{ secrets.PRIVATE_KEY }}
51
+
52
- name: Checkout
53
uses: actions/checkout@v4
54
with:
- token: ${{ secrets.PAT }}
55
+ token: ${{ steps.app-token.outputs.token }}
56
57
- name: Setup
58
uses: ./.github/actions/setup
@@ -64,5 +70,5 @@ jobs:
64
70
- name: Release
65
71
run: yarn release
66
72
env:
67
- GITHUB_TOKEN: ${{ secrets.PAT }}
73
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
68
74
0 commit comments