File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: checks
2
2
on :
3
3
- push
4
4
- pull_request
5
+ - workflow_call
5
6
6
7
jobs :
7
8
test :
Original file line number Diff line number Diff line change
1
+ name : release
2
+ on : workflow_dispatch
3
+ permissions :
4
+ contents : write
5
+ id-token : write
6
+ jobs :
7
+ checks :
8
+ uses : ./.github/workflows/checks.yml
9
+ release :
10
+ needs : checks
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ with :
15
+ fetch-depth : 0
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version : 20
19
+ - name : git config
20
+ run : |
21
+ git config user.name "${GITHUB_ACTOR}"
22
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
23
+ - name : Init npm config
24
+ run : npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
25
+ env :
26
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
27
+ - run : npm install
28
+ - run : npm run release -- --ci
29
+ env :
30
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
31
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments