From 44612641b013354dbc5161182c49132eaffbe01a Mon Sep 17 00:00:00 2001 From: flemming-it Date: Fri, 1 May 2026 18:10:28 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20bisect=20step=202=20=E2=80=94=20add=20SDK?= =?UTF-8?q?=20sibling=20clone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps 0.1.3 -> 0.1.4. Signed-off-by: flemming-it --- .forgejo/workflows/ci.yml | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 0b7d9c0..fb7e814 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -25,3 +25,17 @@ jobs: git fetch --depth=1 origin "$GITHUB_SHA" git checkout -q FETCH_HEAD echo "checkout: ok, ls = $(ls)" + + - name: Checkout fai/module-sdk into sibling layout + run: | + set -eu + parent="$(dirname "$GITHUB_WORKSPACE")" + grandparent="$(dirname "$parent")" + sdk_dir="$grandparent/module_sdk" + mkdir -p "$sdk_dir" + cd "$sdk_dir" + git init -q + git remote add origin "https://git.flemming.ws/fai/module-sdk.git" + git fetch --depth=1 origin main + git checkout -q FETCH_HEAD + echo "module-sdk: ok, ls = $(ls)" diff --git a/Cargo.lock b/Cargo.lock index 78213df..8b30b3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "text_extract" -version = "0.1.3" +version = "0.1.4" dependencies = [ "fai-module-sdk", "pdf-extract", diff --git a/Cargo.toml b/Cargo.toml index 0e01e83..adcff25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "text_extract" -version = "0.1.3" +version = "0.1.4" edition = "2024" authors = ["Dr. Stefan Flemming "] license = "Apache-2.0"