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 1176f6cCopy full SHA for 1176f6c
.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,13 @@ jobs:
53
54
pull-requests: write
55
runs-on: ubuntu-latest
56
steps:
57
+ - name: 'Generate token'
58
+ id: GENERATE_TOKEN
59
+ uses: actions/create-github-app-token@v2
60
+ with:
61
+ app-id: ${{ secrets.BOT_APP_ID }}
62
+ private-key: ${{ secrets.BOT_PRIVATE_KEY }}
63
+
64
- name: Checkout
65
uses: actions/checkout@v4
66
@@ -80,6 +88,6 @@ jobs:
80
88
81
89
- name: Run Semantic Release
82
90
env:
83
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
91
+ GITHUB_TOKEN: ${{ steps.GENERATE_TOKEN.outputs.token }}
84
92
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
85
93
run: npx semantic-release
0 commit comments