File tree 4 files changed +52
-50
lines changed
4 files changed +52
-50
lines changed Original file line number Diff line number Diff line change 6
6
name : Create Release
7
7
8
8
jobs :
9
- build :
9
+ test :
10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
matrix :
13
- node-version : [ 16.x ]
13
+ node-version : [16.x]
14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
- name : Use Node.js ${{ matrix.node-version }}
17
17
uses : actions/setup-node@v2
18
18
with :
19
19
node-version : ${{ matrix.node-version }}
20
20
cache : ' npm'
21
- - run : npm ci --ignore-scripts
21
+ - run : npm ci
22
22
- run : npm run build --if-present
23
23
24
- release_git :
25
- needs : build
24
+ build :
25
+ needs : test
26
26
name : Create Release
27
27
runs-on : ubuntu-latest
28
28
steps :
37
37
tag_name : ${{ github.ref }}
38
38
release_name : Release ${{ github.ref }}
39
39
draft : false
40
- prerelease : false
41
-
42
- publish :
43
- needs : release_git
44
- runs-on : ubuntu-latest
45
- steps :
46
- - uses : actions/checkout@v2
47
- with :
48
- ref : ${{ github.event.release.target_commitish }}
49
- - uses : actions/setup-node@v2
50
- with :
51
- node-version : 16
52
- registry-url : " https://registry.npmjs.org"
53
- - run : npm publish --access public
54
- env :
55
- NODE_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
40
+ prerelease : false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ release :
4
+ types :
5
+ - created
6
+
7
+ name : github - package publish
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ permissions :
13
+ contents : read
14
+ packages : write
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - uses : actions/setup-node@v2
18
+ with :
19
+ node-version : 16
20
+ registry-url : ' https://npm.pkg.github.com'
21
+ scope : ' @conjoon'
22
+ - run : npm publish
23
+ env :
24
+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ release :
4
+ types :
5
+ - created
6
+
7
+ name : npmjs - package publish
8
+
9
+ jobs :
10
+ publish :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ with :
15
+ ref : ${{ github.event.release.target_commitish }}
16
+ - uses : actions/setup-node@v2
17
+ with :
18
+ node-version : 16
19
+ registry-url : " https://registry.npmjs.org"
20
+ - run : npm publish --access public
21
+ env :
22
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
You can’t perform that action at this time.
0 commit comments