diff --git a/.github/workflows/marketplace-publish.yml b/.github/workflows/marketplace-publish.yml index 10133a24ed..fcc089c1db 100644 --- a/.github/workflows/marketplace-publish.yml +++ b/.github/workflows/marketplace-publish.yml @@ -39,6 +39,13 @@ jobs: OVSX_PAT: ${{ secrets.OVSX_PAT }} run: | current_package_version=$(node -p "require('./package.json').version") + + npm run vsix + package=$(unzip -l bin/roo-cline-${current_package_version}.vsix) + echo "$package" + echo "$package" | grep -q "dist/extension.js" || exit 1 + echo "$package" | grep -q "extension/webview-ui/build/assets/index.js" || exit 1 + echo "$package" | grep -q "extension/node_modules/@vscode/codicons/dist/codicon.ttf" || exit 1 + npm run publish:marketplace echo "Successfully published version $current_package_version to VS Code Marketplace" - diff --git a/.vscodeignore b/.vscodeignore index b2518f8b7b..19d2ddfe36 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,4 +1,6 @@ # Default +.github/** +.husky/** .vscode/** .vscode-test/** out/**