We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57fdd0 commit 5004419Copy full SHA for 5004419
.github/workflows/nodejs-publish.yml
@@ -1,4 +1,4 @@
1
-name: Node CI Publish
+name: Node CI
2
3
on:
4
release:
@@ -18,13 +18,17 @@ jobs:
18
uses: actions/setup-node@v1
19
with:
20
node-version: ${{ matrix.node-version }}
21
+ - name: Install vsce
22
+ run: npm install -g vsce
23
+ - name: Build extension
24
+ run: |
25
+ npm ci
26
+ npm run compile
27
- name: Package extension
28
run: |
29
tag=${GITHUB_REF#refs/tags/}
30
echo "Setting package version $tag"
31
npm --no-git-tag-version version "$tag"
- npm run compile
- npm install -g vsce
32
vsce package
33
- name: Publish extension to marketplace
34
env:
0 commit comments