File tree 2 files changed +38
-1
lines changed
2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
+
4
+ name : Node.js Package
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - ' release/**'
10
+ release :
11
+ types : [created]
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - uses : actions/setup-node@v2
19
+ with :
20
+ node-version : 12
21
+ - run : npm install
22
+
23
+ publish-npm :
24
+ needs : build
25
+ runs-on : ubuntu-latest
26
+ steps :
27
+ - uses : actions/checkout@v2
28
+ - uses : actions/setup-node@v2
29
+ with :
30
+ node-version : 12
31
+ registry-url : https://registry.npmjs.org/
32
+ scope : ' @ngx-builders'
33
+ - run : npm install
34
+ - run : npm publish
35
+ env :
36
+ NODE_AUTH_TOKEN : ${{secrets.npm_token}}
37
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @netlify-builder/deploy" ,
3
- "version" : " 4.1.2 " ,
3
+ "version" : " 4.1.3 " ,
4
4
"description" : " A Netlify builder schematics for deployment" ,
5
5
"main" : " index.js" ,
6
6
"builders" : " ./builders.json" ,
You can’t perform that action at this time.
0 commit comments