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 0f4dddb commit a990c38Copy full SHA for a990c38
1 file changed
.github/workflows/deploy.yml
@@ -23,13 +23,22 @@ jobs:
23
run: npm run test
24
25
- name: Set up publishing
26
- run: npm install vsce --save-dev
+ run: |
27
+ npm install vsce --save-dev
28
+ npm install ovsx --save-dev
29
30
- name: Publish
31
run: npm run deploy
32
env:
33
VSCE_PAT: ${{ secrets.VSCE_PAT }}
-
34
+
35
+ - name: Create OVSX Package
36
+ run: npx vsce package --out package.vsix
37
38
+ - name: Publish OVSX Package
39
40
+ npx ovsx publish package.vsix --pat ${{ secrets.OVSX_PAT }}
41
42
- name: Read package.json
43
id: package-json
44
run: |
@@ -38,7 +47,7 @@ jobs:
47
content="${content//$'\n'/'%0A'}"
48
content="${content//$'\r'/'%0D'}"
49
echo "::set-output name=packageJson::$content"
50
51
- name: Get Changelog
52
id: changelog
53
0 commit comments