We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131319d commit 52b9454Copy full SHA for 52b9454
.github/workflows/deploy.yml
@@ -2,16 +2,14 @@ name: Deploy
2
3
on:
4
release:
5
- types:
6
- - created
+ types: [released]
7
8
env:
9
# Specific name is required to login: https://code.visualstudio.com/api/working-with-extensions/continuous-integration
10
VSCE_PAT: ${{ secrets.VSCE_PAT }}
11
12
jobs:
13
build:
14
- if: startsWith( github.ref, 'refs/tags/releases/')
15
name: Publish Extension from Release
16
runs-on: ubuntu-20.04
17
@@ -23,5 +21,8 @@ jobs:
23
21
with:
24
22
node-version: 16.x
25
+ - name: Install Dependencies
+ run: npm install
26
+
27
- name: Publish
28
run: npm run deploy
0 commit comments