We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eaeec4 commit 4ceeaf6Copy full SHA for 4ceeaf6
3 files changed
.github/workflows/publish.yml
@@ -40,10 +40,14 @@ jobs:
40
- name: Install vsce
41
run: npm install -g @vscode/vsce
42
43
+ - name: Package extension
44
+ working-directory: ./client
45
+ run: vsce package --no-dependencies --out liquid-java.vsix
46
+
47
- name: Publish to VS Code Marketplace
48
working-directory: ./client
- run: vsce publish -p ${{ secrets.VSCE_TOKEN }}
49
+ run: vsce publish --packagePath liquid-java.vsix -p ${{ secrets.VSCE_TOKEN }}
50
51
- name: Publish to Open VSX Marketplace
52
- run: npx ovsx publish --pat ${{ secrets.OVSX_TOKEN }}
53
+ run: npx ovsx publish liquid-java.vsix --pat ${{ secrets.OVSX_TOKEN }}
0 commit comments