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 3df8aec commit 2e5c73dCopy full SHA for 2e5c73d
.github/workflows/ci.yaml
@@ -53,6 +53,12 @@ jobs:
53
pull-requests: write
54
runs-on: ubuntu-latest
55
steps:
56
+ - uses: actions/create-github-app-token@v2
57
+ id: app-token
58
+ with:
59
+ app-id: ${{ secrets.BOT_APP_ID }}
60
+ private-key: ${{ secrets.BOT_PRIVATE_KEY }}
61
+
62
- name: Checkout
63
uses: actions/checkout@v4
64
@@ -80,6 +86,6 @@ jobs:
80
86
81
87
- name: Run Semantic Release
82
88
env:
83
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
84
90
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
85
91
run: npx semantic-release
0 commit comments