From 6e35e5a797b1057d205b9d17609140d6bda3477b Mon Sep 17 00:00:00 2001 From: flemming-it Date: Fri, 1 May 2026 18:05:25 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20bisect=20step=201=20=E2=80=94=20own=20che?= =?UTF-8?q?ckout=20via=20external=20URL=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps 0.1.2 -> 0.1.3. Signed-off-by: flemming-it --- .forgejo/workflows/ci.yml | 18 +++++++++++------- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 2873d1f..0b7d9c0 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -10,14 +10,18 @@ env: CARGO_TERM_COLOR: always jobs: - smoke: + ci: name: Linux x86_64 (Forgejo) runs-on: ubuntu-latest steps: - - name: Smoke + - name: Checkout text-extract via external URL run: | - echo "runner alive" - echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE" - echo "GITHUB_REPOSITORY=$GITHUB_REPOSITORY" - echo "GITHUB_SHA=$GITHUB_SHA" - uname -a + set -eu + mkdir -p "$GITHUB_WORKSPACE" + cd "$GITHUB_WORKSPACE" + git init -q + git remote add origin \ + "https://x-access-token:${GITHUB_TOKEN}@git.flemming.ws/${GITHUB_REPOSITORY}.git" + git fetch --depth=1 origin "$GITHUB_SHA" + git checkout -q FETCH_HEAD + echo "checkout: ok, ls = $(ls)" diff --git a/Cargo.lock b/Cargo.lock index abc4b72..78213df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "text_extract" -version = "0.1.2" +version = "0.1.3" dependencies = [ "fai-module-sdk", "pdf-extract", diff --git a/Cargo.toml b/Cargo.toml index 1c798b8..0e01e83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "text_extract" -version = "0.1.2" +version = "0.1.3" edition = "2024" authors = ["Dr. Stefan Flemming "] license = "Apache-2.0"