There was an error while loading. Please reload this page.
2 parents 5b348a2 + 294564b commit e21b816Copy full SHA for e21b816
1 file changed
.github/workflows/release.yml
@@ -39,6 +39,13 @@ jobs:
39
- name: Run tests
40
run: npm test
41
42
+ - name: Create GitHub App Token
43
+ id: app-token
44
+ uses: actions/create-github-app-token@b96fde71c0080358ed6e2d162f11c612c92a97d1
45
+ with:
46
+ app-id: ${{ secrets.APP_ID }}
47
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
48
+
49
- name: Publish project
50
uses: cycjimmy/semantic-release-action@b12c8f6015dc215fe37bc154d4ad456dd3833c90 # v6.0.0
51
id: semantic
@@ -52,7 +59,7 @@ jobs:
52
59
"master"
53
60
]
54
61
env:
55
- GITHUB_TOKEN: ${{ secrets.RELEASE_PAT_TOKEN }}
62
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
56
63
57
64
publish-docs:
58
65
needs: release
0 commit comments