File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 7
7
permissions : write-all
8
8
9
9
jobs :
10
- checks :
10
+ release :
11
11
runs-on : ubuntu-latest
12
- name : Checks
12
+ name : Release
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
with :
@@ -24,11 +24,18 @@ jobs:
24
24
cd packages/bento-design-system
25
25
pnpm version --no-git-tag-version --new-version ${{ github.ref_name }}
26
26
27
+ - name : Get Github App Token
28
+ id : github_app_token
29
+ uses : getsentry/action-github-app-token@v3
30
+ with :
31
+ app_id : ${{ secrets.RELEASE_BOT_APP_ID }}
32
+ private_key : ${{ secrets.RELEASE_BOT_APP_PRIVATE_KEY }}
33
+
27
34
- name : Commit & Push changes
28
35
uses : actions-js/push@master
29
36
with :
30
37
message : ${{ github.ref_name }}
31
- github_token : ${{ secrets.GITHUB_TOKEN }}
38
+ github_token : ${{ steps.github_app_token.outputs.token }}
32
39
33
40
- name : Publish to npm
34
41
uses : JS-DevTools/npm-publish@v3
You can’t perform that action at this time.
0 commit comments