We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd12476 commit 7b241b1Copy full SHA for 7b241b1
1 file changed
.github/workflows/publish.yml
@@ -13,16 +13,15 @@ jobs:
13
steps:
14
- uses: actions/checkout@v2
15
16
- - name: Pre-requisities
17
- run: sudo npm install -g vsce
18
- - run: npm install
+ - name: Install dependencies
+ run: npm install
19
20
- name: Update version and changelog
21
run: npx semantic-release --dry-run
22
env:
23
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
- name: Package VSIX
25
- run: vsce package
+ run: npx vsce package
26
- uses: actions/upload-artifact@v2
27
with:
28
name: VSIX
@@ -44,6 +43,6 @@ jobs:
44
43
45
46
- name: Publish
47
- run: vsce publish
+ run: npx vsce publish
48
49
VSCE_PAT: $
0 commit comments