We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1061d15 commit 4fd99eaCopy full SHA for 4fd99ea
.github/workflows/manual-vscode-boxel-tools.yml
@@ -94,7 +94,7 @@ jobs:
94
- name: Package
95
run: pnpm vscode:package
96
working-directory: packages/vscode-boxel-tools
97
- - name: Publish
+ - name: Publish to Visual Studio Marketplace
98
run: |
99
if [ "${{ inputs.environment }}" = "production" ]; then
100
pnpm vscode:publish
@@ -104,3 +104,13 @@ jobs:
104
105
env:
106
VSCE_PAT: ${{ secrets.VSCE_PAT }}
107
+ - name: Publish to Open VSX
108
+ run: |
109
+ if [ "${{ inputs.environment }}" = "production" ]; then
110
+ npx ovsx publish --no-dependencies --pat $OVSX_TOKEN
111
+ else
112
+ npx ovsx publish --no-dependencies --pre-release --pat $OVSX_TOKEN
113
+ fi
114
+ working-directory: packages/vscode-boxel-tools
115
+ env:
116
+ OVSX_TOKEN: ${{ secrets.OVSX_TOKEN }}
0 commit comments