File tree Expand file tree Collapse file tree 4 files changed +26
-9
lines changed Expand file tree Collapse file tree 4 files changed +26
-9
lines changed Original file line number Diff line number Diff line change 9
9
publish :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - uses : actions/setup-node@v1
14
- - run : npm install
15
- - run : npm run deploy
12
+ - name : Checkout Repo
13
+ uses : actions/checkout@v2
14
+
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v2
17
+ with :
18
+ node-version : 16
19
+ cache : npm
20
+
21
+ - name : Install dependencies
22
+ run : npm ci
23
+
24
+ - name : Publish to VS Code Marketplace
25
+ run : npm run deploy
16
26
env :
17
27
VSCE_PAT : ${{ secrets.VSCE_PAT }}
Original file line number Diff line number Diff line change
1
+ 16
Original file line number Diff line number Diff line change 4
4
5
5
-
6
6
7
+ ## [ 1.0.1] - 2021-08-24
8
+
9
+ ### Fixed
10
+
11
+ - Use node 16 for the GitHub action workflow [[ #3 ] ( https://github.com/mheob/vscode-snippets/pull/3 )]
12
+
7
13
## [ 1.0.0] - 2021-08-24
8
14
9
15
### Added
10
16
11
- - First running state with some snippets
12
-
13
- <!-- [0.0.2]: https://github.com/mheob/vscode-snippets/compare/v0.0.1...v0.0.2 -->
17
+ - First running state with some snippets [[ #1 ] ( https://github.com/mheob/vscode-snippets/pull/1 )]
18
+ [[ #2 ] ( https://github.com/mheob/vscode-snippets/pull/2 )]
14
19
15
- [ unreleased ] : https://github.com/mheob/vscode-snippets/compare/v1.0.0...HEAD
20
+ [ unreleased ] : https://github.com/mheob/vscode-snippets/compare/v1.0.1...HEAD
21
+ [ 1.0.1 ] : https://github.com/mheob/vscode-snippets/compare/v1.0.0...v1.0.1
16
22
[ 1.0.0 ] : https://github.com/mheob/vscode-snippets/releases/tag/v1.0.0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vscode-snippets" ,
3
3
"displayName" : " Snippets for Next.js, React in TypeScript" ,
4
- "version" : " 1.0.0 " ,
4
+ "version" : " 1.0.1 " ,
5
5
"description" : " Snippets for the development with Next.js, React in a TypeScript environment." ,
6
6
"categories" : [
7
7
" Snippets"
You can’t perform that action at this time.
0 commit comments