File tree Expand file tree Collapse file tree 4 files changed +27
-4
lines changed Expand file tree Collapse file tree 4 files changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v1
14
+ uses : actions/checkout@v2
15
15
- name : Install node
16
16
uses : actions/setup-node@v1
17
17
with :
18
- node-version : ' 10 .x'
18
+ node-version : ' 12 .x'
19
19
- name : Install Python
20
20
uses : actions/setup-python@v1
21
21
with :
Original file line number Diff line number Diff line change
1
+ name : Publish Package
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Install node
14
+ uses : actions/setup-node@v1
15
+ with :
16
+ node-version : ' 12.x'
17
+ registry-url : ' https://registry.npmjs.org'
18
+ - name : Build and publish NPM package
19
+ run : |
20
+ npm install
21
+ npm publish
22
+ env :
23
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jupyterlab-tour" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 2.0 .0" ,
4
4
"description" : " A JupyterLab UI Tour based on jupyterlab-tutorial." ,
5
5
"keywords" : [
6
6
" jupyter" ,
Original file line number Diff line number Diff line change 1
1
// generated by genversion
2
- export const version = '0.1 .0' ;
2
+ export const version = '2.0 .0' ;
You can’t perform that action at this time.
0 commit comments