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.
2 parents f99e8cd + 34cf557 commit ffb25a1Copy full SHA for ffb25a1
.github/workflows/publish.yml
@@ -147,3 +147,20 @@ jobs:
147
pat: ${{ secrets.PUBLISHER_KEY }}
148
registryUrl: https://marketplace.visualstudio.com
149
extensionFile: ./vscode-github-actions-${{ needs.release.outputs.version }}.vsix
150
+
151
+ open-vsx-publish:
152
+ name: Publish to Open VSX Registry
153
+ needs: release
154
+ environment: publish-open-vsx
155
+ runs-on: ubuntu-latest
156
+ env:
157
+ OPEN_VSX_TOKEN: ${{ secrets.OPEN_VSX_TOKEN }}
158
+ steps:
159
+ - name: Download artifact
160
+ uses: actions/download-artifact@v3
161
+ with:
162
+ name: vscode-github-actions-${{ needs.release.outputs.version }}.vsix
163
164
+ - name: Publish to Registry
165
+ run: |
166
+ npx ovsx publish -p $OPEN_VSX_TOKEN *.vsix
0 commit comments