Skip to content

Commit 7242664

Browse files
authored
Update build.yml
1 parent 3a1616f commit 7242664

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/build.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,15 @@ jobs:
2424
- name: Lint
2525
run: npm run lint
2626

27-
- name: VSCE Packge
28-
run: npx vsce package
27+
- name: VSCE Packsge
28+
run: |
29+
npm install -g @vscode/vsce
30+
npx vsce package
31+
mkdir dist
32+
mv *.vsix dist/
33+
34+
- name: Publish Package
35+
uses: actions/upload-artifact@v3
36+
with:
37+
name: dist
38+
path: dist

0 commit comments

Comments
 (0)