This is an automated email from the ASF dual-hosted git repository. tballison pushed a commit to branch TIKA-4733-fix-docker in repository https://gitbox.apache.org/repos/asf/tika.git
commit e18e6abd6464b27b52acfbbf42f3ce5b1bebde5a Author: tallison <[email protected]> AuthorDate: Thu May 21 09:22:38 2026 -0400 TIKA-4733 -- fix docker-snapshot.yml to match new release zip artifacts --- .github/workflows/docker-snapshot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-snapshot.yml b/.github/workflows/docker-snapshot.yml index 1b17355ad4..09ab197f4c 100644 --- a/.github/workflows/docker-snapshot.yml +++ b/.github/workflows/docker-snapshot.yml @@ -66,7 +66,7 @@ jobs: TIKA_VERSION="${{ steps.version.outputs.tika_version }}" OUT_DIR=target/tika-server-minimal-docker mkdir -p "${OUT_DIR}/tika-server" - tar xzf "tika-server/tika-server-standard/target/tika-server-standard-${TIKA_VERSION}-bin.tgz" -C "${OUT_DIR}/tika-server" + unzip -q "tika-server/tika-server-standard/target/tika-server-standard-${TIKA_VERSION}.zip" -d "${OUT_DIR}/tika-server" cp "tika-server/docker-build/minimal/Dockerfile.snapshot" "${OUT_DIR}/Dockerfile" - name: Build tika-server minimal image for smoke test @@ -118,7 +118,7 @@ jobs: TIKA_VERSION="${{ steps.version.outputs.tika_version }}" OUT_DIR=target/tika-server-full-docker mkdir -p "${OUT_DIR}/tika-server" - tar xzf "tika-server/tika-server-standard/target/tika-server-standard-${TIKA_VERSION}-bin.tgz" -C "${OUT_DIR}/tika-server" + unzip -q "tika-server/tika-server-standard/target/tika-server-standard-${TIKA_VERSION}.zip" -d "${OUT_DIR}/tika-server" cp "tika-server/docker-build/full/Dockerfile.snapshot" "${OUT_DIR}/Dockerfile" - name: Build tika-server full image for smoke test
