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 92636d0 commit 2dd2875Copy full SHA for 2dd2875
.github/workflows/release.yml
@@ -26,6 +26,12 @@ jobs:
26
fetch-depth: 0
27
persist-credentials: false
28
29
+ - uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42
30
+ id: app-token
31
+ with:
32
+ app-id: ${{ vars.PRIMER_APP_ID_SHARED }}
33
+ private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }}
34
+
35
- name: Set up Node.js
36
uses: actions/setup-node@v6
37
with:
@@ -42,7 +48,7 @@ jobs:
42
48
# This expects you to have a script called release which does a build for your packages and calls changeset publish
43
49
publish: npm run release
44
50
env:
45
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
46
52
47
53
release-canary:
54
name: Canary
0 commit comments