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 1e9d3ce commit 58e5ee9Copy full SHA for 58e5ee9
.github/workflows/publish-extension.yml
@@ -47,10 +47,15 @@ jobs:
47
- name: Build VSIX package
48
run: npm run package -- -o vscode-string-manipulation.v${{ steps.calculateVersion.outputs.AppVersion }}.vsix
49
50
- - name: Publish extension package
+ - name: Publish extension package to Marketplace
51
env:
52
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
53
- run: npm run vsce -- publish -p $VSCE_TOKEN
+ run: npm run ovsx -- publish -p $VSCE_TOKEN
54
+
55
+ - name: Publish extension package to Open VSX Registry
56
+ env:
57
+ OVSX_PAT: ${{ secrets.OVSX_PAT }}
58
+ run: npm run ovsx -- publish -p $OVSX_PAT
59
60
- uses: actions/upload-artifact@v4
61
name: Upload artifact
0 commit comments