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 fe6f3ba commit f34045bCopy full SHA for f34045b
.github/workflows/release_extension.yaml
@@ -28,11 +28,6 @@ jobs:
28
working-directory: vscode/extension
29
run: |
30
npm version ${{ steps.extract_version.outputs.VERSION }} --no-git-tag-version
31
- - name: Install dependencies
32
- working-directory: vscode/extension
33
- run: pnpm install
34
- - name: Run CI
35
- run: pnpm run ci
36
- name: Build extension
37
38
run: pnpm run vscode:package
@@ -42,3 +37,7 @@ jobs:
42
pnpx vsce publish --packagePath sqlmesh-${{ steps.extract_version.outputs.VERSION }}.vsix
43
env:
44
39
VSCE_PAT: ${{ secrets.VSCE_PAT }}
40
+ - name: Upload extension to OpenVSX
41
+ working-directory: vscode/extension
+ run: |
+ pnpx ovsx publish -p ${{ secrets.OPEN_VSX_TOKEN }} sqlmesh-${{ steps.extract_version.outputs.VERSION }}.vsix
0 commit comments