We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4440079 commit eedb86dCopy full SHA for eedb86d
1 file changed
.github/workflows/vsce-publish.yaml
@@ -28,7 +28,15 @@ jobs:
28
- name: Install vsce
29
run: npm install -g @vscode/vsce
30
31
- - name: Publish Extension
+ - name: Publish Extension to VSCode Marketplace
32
run: vsce publish -p ${VSCE_PAT}
33
env:
34
VSCE_PAT: ${{ secrets.VSCE_PAT }}
35
+
36
+ - name: Install ovsx
37
+ run: npm install -g ovsx
38
39
+ - name: Publish to Open VSX Registry
40
+ run: ovsx publish -p ${OVSX_PAT}
41
+ env:
42
+ OVSX_PAT: ${{ secrets.OVSX_PAT }}
0 commit comments