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