File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -149,3 +149,24 @@ jobs:
149149 pat : ${{ secrets.PUBLISHER_KEY }}
150150 registryUrl : https://marketplace.visualstudio.com
151151 extensionFile : ./vscode-github-actions-${{ needs.release.outputs.version }}.vsix
152+
153+ publish-openvsx :
154+ environment : publish-openvsx
155+
156+ needs : release
157+
158+ runs-on : ubuntu-latest
159+ permissions : {}
160+
161+ steps :
162+ - uses : actions/download-artifact@v4
163+ with :
164+ name : vscode-github-actions-${{ needs.release.outputs.version }}.vsix
165+
166+ - name : Install ovsx
167+ run : npm install -g ovsx
168+
169+ - name : Publish to Open VSX Registry
170+ env :
171+ OVSX_PAT : ${{ secrets.OVSX_PAT }}
172+ run : ovsx publish ./vscode-github-actions-${{ needs.release.outputs.version }}.vsix
You can’t perform that action at this time.
0 commit comments