File tree 1 file changed +15
-20
lines changed
1 file changed +15
-20
lines changed Original file line number Diff line number Diff line change 7
7
push :
8
8
branches :
9
9
- main
10
- release :
11
- types : [created]
12
10
13
11
jobs :
14
- build :
12
+ publish :
15
13
runs-on : ubuntu-latest
16
- steps :
17
- - uses : actions/checkout@v4
18
- - uses : actions/setup-node@v4
19
- with :
20
- node-version : 20
21
- - run : npm ci
22
- - run : npm test
23
14
24
- publish-npm :
25
- needs : build
26
- runs-on : ubuntu-latest
27
15
steps :
28
- - uses : actions/checkout@v4
29
- - uses : actions/setup-node@v4
16
+ - name : Checkout code
17
+ uses : actions/checkout@v2
18
+
19
+ - name : Set up Node.js
20
+ uses : actions/setup-node@v2
30
21
with :
31
- node-version : 20
32
- registry-url : https://registry.npmjs.org/
33
- - run : npm install
34
- - run : npm publish
22
+ node-version : ' 14'
23
+ registry-url : ' https://registry.npmjs.org/'
24
+
25
+ - name : Install dependencies
26
+ run : npm install
27
+
28
+ - name : Publish to npm
29
+ run : npm publish
35
30
env :
36
- NODE_AUTH_TOKEN : ${{secrets.npm_token }}
31
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments