Skip to content

Commit 787f18d

Browse files
committed
update version
1 parent c2eb3cc commit 787f18d

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/build-extensions.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Build theme extension
4242
run: |
4343
echo "Building theme extension..."
44-
cd themes && npx @vscode/vsce package --out ./zenml-color-theme-0.0.1.vsix
44+
cd themes && npx @vscode/vsce package --out ./zenml-color-theme-0.0.2.vsix
4545
4646
- name: Verify extensions were builts
4747
run: |
@@ -54,11 +54,11 @@ jobs:
5454
exit 1
5555
fi
5656
57-
if [ -f "themes/zenml-color-theme-0.0.1.vsix" ]; then
57+
if [ -f "themes/zenml-color-theme-0.0.2.vsix" ]; then
5858
echo "Theme extension built successfully:"
59-
ls -la themes/zenml-color-theme-0.0.1.vsix
59+
ls -la themes/zenml-color-theme-0.0.2.vsix
6060
else
61-
echo "ERROR: zenml-color-theme-0.0.1.vsix not found"
61+
echo "ERROR: zenml-color-theme-0.0.2.vsix not found"
6262
exit 1
6363
fi
6464
@@ -72,7 +72,7 @@ jobs:
7272
uses: actions/upload-artifact@v4
7373
with:
7474
name: theme-extension
75-
path: themes/zenml-color-theme-0.0.1.vsix
75+
path: themes/zenml-color-theme-0.0.2.vsix
7676

7777
- name: Commit and push built extensions
7878
# Only commit on push to main/develop branches, not on PRs
@@ -83,7 +83,7 @@ jobs:
8383
8484
# Add the built extensions to git
8585
git add .devcontainer/extensions/zenml-codespace-tutorial-*.vsix
86-
git add themes/zenml-color-theme-0.0.1.vsix
86+
git add themes/zenml-color-theme-0.0.2.vsix
8787
8888
# Check if there are any changes to commit
8989
if git diff --staged --quiet; then

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "https://github.com/zenml-io/vscode-tutorial.git"
77
},
88
"description": "Interactive ZenML pipeline tutorials for Codespaces",
9-
"version": "0.0.1",
9+
"version": "0.0.2",
1010
"publisher": "zenml-io",
1111
"engines": {
1212
"vscode": "^1.90.0"

project.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM zenmldocker/zenml-codespace:${ZENML_VERSION}
77
ARG PROJECT_DIR_NAME
88

99
# Set the working directory for the project
10-
WORKDIR /home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.1/pipelines
10+
WORKDIR /home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.2/pipelines
1111

1212
# Copy the specific project's requirements file
1313
COPY ./${PROJECT_DIR_NAME}/requirements.txt /tmp/requirements.txt

src/utils/getExtensionUri.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ export default function getExtensionUri(context: vscode.ExtensionContext) {
99
if (isTutorialEnabled) {
1010
// Use the codespace container extension path when tutorial is enabled
1111
return vscode.Uri.file(
12-
"/home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.1"
12+
"/home/coder/extensions/zenml.zenml-codespace-tutorial-0.0.2"
1313
);
1414
} else {
1515
// Use the original logic for other environments
1616
return vscode.Uri.file(
1717
`/root/${
1818
isCodespace ? ".vscode-remote" : ".vscode-server"
19-
}/extensions/zenml.zenml-codespace-tutorial-0.0.1`
19+
}/extensions/zenml.zenml-codespace-tutorial-0.0.2`
2020
);
2121
}
2222
} else {

themes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "zenml-color-theme",
33
"displayName": "ZenML Color Theme",
44
"description": "VS Code theme matching ZenML Dashboard",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "zenml-io",
77
"engines": {
88
"vscode": "^1.74.0"

0 commit comments

Comments
 (0)