File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : npmjs release
2
+
3
+ on :
4
+ release :
5
+ types : [created]
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ # Setup .npmrc file to publish to npm
12
+ - uses : actions/setup-node@v2
13
+ with :
14
+ node-version : ' 15.x'
15
+ registry-url : ' https://registry.npmjs.org'
16
+ - run : npm ci
17
+ - run : npm test
18
+ - run : npm run build
19
+ - run : cd dist && npm publish --access=public
20
+ env :
21
+ NODE_AUTH_TOKEN : ${{ secrets.NODE_AUTH_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @severlessworkflow/sdk-typescript" ,
3
- "version" : " 0.6.0 " ,
3
+ "version" : " 0.6.1 " ,
4
4
"description" : " Typescript SDK for Serverless Workflow Specification" ,
5
5
"main" : " umd/index.umd.min.js" ,
6
6
"browser" : " umd/index.umd.min.js" ,
You can’t perform that action at this time.
0 commit comments