File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11on : push
2- name : ' Release Vscode Plugin'
2+ name : " Release Vscode Plugin"
33jobs :
44 npmInstall :
55 name : npm install
66 runs-on : ubuntu-latest
77 steps :
88 - uses : actions/checkout@master
9- - name : npm install
10- uses : actions/npm@master
9+ - uses : actions/checkout@v2
10+ - uses : actions/setup-node@v1
1111 with :
12- args : install --unsafe-perm
12+ node-version : 12
13+ - run : yarn
14+ - run : yarn lint
15+ - run : yarn compile
1316 - name : Master
1417 uses : actions/bin/filter@master
1518 with :
Original file line number Diff line number Diff line change 1+ sudo : true
2+
3+ language : node_js
4+
5+ node_js :
6+ - 10
7+
8+ cache :
9+ directories :
10+ - node_modules
11+
12+ before_install :
13+ - npm i -g github-release-from-changelog
14+
15+ deploy :
16+ - provider : script
17+ github_token : $GITHUB_TOKEN
18+ script : github-release-from-changelog
19+ skip_cleanup : true
20+ on :
21+ tags : true
You can’t perform that action at this time.
0 commit comments