Skip to content

Commit eedb86d

Browse files
committed
ci(publish): add Open VSX Registry publishing to workflow
- Add ovsx package installation step - Add publishing step to Open VSX Registry - Update VSCode Marketplace publish step name for clarity
1 parent 4440079 commit eedb86d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/vsce-publish.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@ jobs:
2828
- name: Install vsce
2929
run: npm install -g @vscode/vsce
3030

31-
- name: Publish Extension
31+
- name: Publish Extension to VSCode Marketplace
3232
run: vsce publish -p ${VSCE_PAT}
3333
env:
3434
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

Comments
 (0)