Skip to content

Commit 179ec38

Browse files
committed
chore: fix releaser
1 parent 7f63437 commit 179ec38

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/vscode.yml

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ main ]
66
push:
77
branches: [ main ]
8+
tags: ["v*.*.*"]
89

910
jobs:
1011
ci:
@@ -28,6 +29,13 @@ jobs:
2829
run: |
2930
npm install -g @vscode/vsce
3031
vsce package
32+
33+
- name: Archive production artifacts
34+
uses: actions/upload-artifact@v3
35+
if: "!startsWith(github.ref, 'refs/tags/')"
36+
with:
37+
name: dist-without-markdown
38+
path: "*.vsix"
3139

3240
- name: Release
3341
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)