From f78b09aeb1fa4d79c65726df9fe0c237b44f3f59 Mon Sep 17 00:00:00 2001 From: Julian Popescu Date: Wed, 11 Feb 2026 11:54:59 +0100 Subject: [PATCH] ci: push pr image --- .github/workflows/cd.yaml | 4 +++- docker/Dockerfile.kubimo | 2 +- docker/kubimo/marimo/marimo.toml | 2 +- template/src/dataset_marimo.rs | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 7f05476..4f98ef3 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -160,7 +160,9 @@ jobs: files: | ./docker-bake.hcl cwd://${{ steps.meta-kubimo.outputs.bake-file }} - push: ${{ github.event_name != 'pull_request' }} + # TODO: revert back + # push: ${{ github.event_name != 'pull_request' }} + push: true npm: name: Build and publish npm package diff --git a/docker/Dockerfile.kubimo b/docker/Dockerfile.kubimo index 9149a19..fc2d9c5 100644 --- a/docker/Dockerfile.kubimo +++ b/docker/Dockerfile.kubimo @@ -1,4 +1,4 @@ -ARG KUBIMO_MARIMO_IMAGE=ghcr.io/aqora-io/kubimo-marimo:0.1.9 +ARG KUBIMO_MARIMO_IMAGE=ghcr.io/aqora-io/kubimo-marimo:pr-6 FROM ${KUBIMO_MARIMO_IMAGE} AS build diff --git a/docker/kubimo/marimo/marimo.toml b/docker/kubimo/marimo/marimo.toml index 5c2e1ff..5e3bb3e 100644 --- a/docker/kubimo/marimo/marimo.toml +++ b/docker/kubimo/marimo/marimo.toml @@ -27,7 +27,7 @@ std_stream_max_bytes = 1000000 reactive_tests = true watcher_on_save = "lazy" output_max_bytes = 8000000 -default_auto_download = ["html"] +default_auto_download = ["html", "ipynb", "md"] on_cell_change = "autorun" auto_instantiate = false default_sql_output = "auto" diff --git a/template/src/dataset_marimo.rs b/template/src/dataset_marimo.rs index 2f66cc7..55bf057 100644 --- a/template/src/dataset_marimo.rs +++ b/template/src/dataset_marimo.rs @@ -8,7 +8,7 @@ use crate::registry::REGISTRY; use crate::utils::{assert_semver, assert_slug, assert_username, OptionExt}; const DEFAULT_PYTHON_VERSION: &str = "3.10"; -const DEFAULT_MARIMO_VERSION: &str = "0.19.2"; +const DEFAULT_MARIMO_VERSION: &str = "0.19.9"; const DEFAULT_CLI_VERSION_STR: &str = env!("CARGO_PKG_VERSION"); #[derive(Builder, Serialize, Debug)]