Skip to content

Commit ccb96b2

Browse files
authored
Fix deployment tag and README links on Marketplace (#1321)
## Changes `package` script uses TAG in this way: ``` vsce package --pre-release --baseContentUrl https://github.com/databricks/databricks-vscode/blob/${TAG:-bundle-integ}/packages/databricks-vscode --baseImagesUrl https://raw.githubusercontent.com/databricks/databricks-vscode/${TAG:-bundle-integ}/packages/databricks-vscode ``` When we set an incorrect tag, content and images urls point to wrong locations, breaking the readme in the vscode marketplace
1 parent 93a7c36 commit ccb96b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/databricks-vscode/scripts/package-vsix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if [ $ARCH != "win32-arm64" ]; then
5858
fi
5959

6060
yarn run prettier package.json --write
61-
TAG="release-v$(cat package.json | jq -r .version)" yarn run package -t $VSXI_ARCH
61+
TAG="release-v$(cat package.json | jq -r .version)-preview" yarn run package -t $VSXI_ARCH
6262

6363
git checkout -- package.json
6464

0 commit comments

Comments
 (0)