Skip to content

Commit fa3b843

Browse files
committed
Run release action
1 parent 6086f3f commit fa3b843

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
- run: npm install
1616
- run: npm test
1717
- run: npm install -g vsce
18-
- run: vsce package
18+
- run: vsce package
19+

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: ^14
16+
- run: npm install
17+
- run: npm test
18+
- run: npm install -g vsce
19+
- run: vsce package
20+
- run: vsce publish -p ${{ secrets.VSCE_PAT }}
21+

0 commit comments

Comments
 (0)