Skip to content

Commit 423b94b

Browse files
authored
fix image links in README.md (#440)
1 parent d7288e9 commit 423b94b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/publish-to-vscode.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
- name: Publish to VS Code Marketplace
4949
run: |
5050
vsce -V
51-
BASE_URL="https://github.com/databricks/databricks-vscode/raw/$TAG/packages/databricks-vscode"
52-
vsce publish -p ${{ secrets.VSCE_TOKEN }} --packagePath databricks-*.vsix --baseContentUrl $BASE_URL --baseImagesUrl $BASE_URL
51+
vsce publish -p ${{ secrets.VSCE_TOKEN }} --packagePath databricks-*.vsix
5352
5453
env:
5554
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}

packages/databricks-vscode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The extension is available from the [Visual Studio Marketplace](https://marketpl
1010
- Run Python files on a Databricks cluster
1111
- Run notebooks and Python files as Workflows
1212

13-
![run](./images/run.gif)
13+
![run](images/run.gif)
1414

1515
## Requirements
1616

packages/databricks-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@
581581
},
582582
"scripts": {
583583
"vscode:prepublish": "rm -rf out && yarn run package:compile && yarn run package:copy-webview-toolkit",
584-
"package": "vsce package",
584+
"package": "BASE_URL=https://raw.githubusercontent.com/databricks/databricks-vscode/${TAG:-main}/packages/databricks-vscode && vsce package --baseContentUrl $BASE_URL --baseImagesUrl $BASE_URL",
585585
"package:cli:fetch": "BRICKS_VERSION=0.0.21 && bash ./scripts/fetch-bricks-cli.sh ${BRICKS_VERSION} ${BRICKS_ARCH:-}",
586586
"package:cli:link": "rm -f ./bin/bricks && ln -s ../../../../bricks/bricks bin",
587587
"package:compile": "yarn run esbuild:base",

0 commit comments

Comments
 (0)