File tree Expand file tree Collapse file tree 1 file changed +20
-13
lines changed Expand file tree Collapse file tree 1 file changed +20
-13
lines changed Original file line number Diff line number Diff line change 4
4
release :
5
5
types : [published]
6
6
7
-
8
7
jobs :
9
8
deploy :
10
9
runs-on : ubuntu-latest
11
10
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 }}
11
+ - uses : actions/checkout@v2
12
+ - name : Install node
13
+ uses : actions/setup-node@v1
14
+ with :
15
+ node-version : ' 12.x'
16
+ registry-url : ' https://registry.npmjs.org'
17
+ - name : Install Python
18
+ uses : actions/setup-python@v1
19
+ with :
20
+ python-version : ' 3.x'
21
+ - name : Install dependencies
22
+ run : |
23
+ python -m pip install --upgrade pip
24
+ pip install jupyterlab~=2.0
25
+ - name : Build and publish NPM package
26
+ run : |
27
+ npm install
28
+ npm publish
29
+ env :
30
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments