We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92561aa commit 327e764Copy full SHA for 327e764
.github/workflows/marketplace-publish.yml
@@ -39,6 +39,13 @@ jobs:
39
OVSX_PAT: ${{ secrets.OVSX_PAT }}
40
run: |
41
current_package_version=$(node -p "require('./package.json').version")
42
+
43
+ npm run vsix
44
+ package=$(unzip -l bin/roo-cline-${current_package_version}.vsix)
45
+ echo $package
46
+ echo $package | grep -q "dist/extension.js" || exit 1
47
+ echo $package | grep -q "extension/webview-ui/build/assets/index.js" || exit 1
48
+ echo $package | grep -q "extension/node_modules/@vscode/codicons/dist/codicon.ttf" || exit 1
49
50
npm run publish:marketplace
51
echo "Successfully published version $current_package_version to VS Code Marketplace"
-
.vscodeignore
@@ -1,4 +1,6 @@
1
# Default
2
+.github/**
3
+.husky/**
4
.vscode/**
5
.vscode-test/**
6
out/**
0 commit comments