We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6086f3f commit fa3b843Copy full SHA for fa3b843
.github/workflows/ci.yml
@@ -15,4 +15,5 @@ jobs:
15
- run: npm install
16
- run: npm test
17
- run: npm install -g vsce
18
- - run: vsce package
+ - run: vsce package
19
+
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: Release
2
3
+on:
4
+ release:
5
+ types:
6
+ - published
7
8
+jobs:
9
10
+ runs-on: ubuntu
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v2
14
+ with:
+ node-version: ^14
+ - run: npm install
+ - run: npm test
+ - run: npm install -g vsce
20
+ - run: vsce publish -p ${{ secrets.VSCE_PAT }}
21
0 commit comments