From 7b91d4e55adab7fcd9028d3db7484b5573957e3d Mon Sep 17 00:00:00 2001 From: nofyso <1052470899@qq.com> Date: Fri, 19 Jun 2026 02:28:54 +0800 Subject: [PATCH 1/2] fix(ci): fix wrong toml path --- .github/workflows/build_image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_image.yaml b/.github/workflows/build_image.yaml index ac5511c..30caef9 100644 --- a/.github/workflows/build_image.yaml +++ b/.github/workflows/build_image.yaml @@ -38,7 +38,7 @@ jobs: shell: bash run: | set -euo pipefail - cargo_toml="${{ matrix.image }}/Cargo.toml" + cargo_toml="Cargo.toml" version="$(python3 - "$cargo_toml" <<'PY' import sys, tomllib with open(sys.argv[1], "rb") as f: From e4500908e9e6d29697d31505f567d536e503e8de Mon Sep 17 00:00:00 2001 From: nofyso <1052470899@qq.com> Date: Fri, 19 Jun 2026 02:28:54 +0800 Subject: [PATCH 2/2] fix(ci): fix wrong toml path --- .github/workflows/build_image.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_image.yaml b/.github/workflows/build_image.yaml index ac5511c..c1677ec 100644 --- a/.github/workflows/build_image.yaml +++ b/.github/workflows/build_image.yaml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - image: [cuscuta-chilo, cuscuta-worker, cuscuta-entry, cuscuta-mock] + image: [cuscuta-chilo, cuscuta-worker, cuscuta-entry] steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: shell: bash run: | set -euo pipefail - cargo_toml="${{ matrix.image }}/Cargo.toml" + cargo_toml="Cargo.toml" version="$(python3 - "$cargo_toml" <<'PY' import sys, tomllib with open(sys.argv[1], "rb") as f: