From 17e2d0523d32f2582848a7a879404b757cb48566 Mon Sep 17 00:00:00 2001 From: claude-veilor-bot <279801990+s8n-ru@users.noreply.github.com> Date: Wed, 6 May 2026 16:58:50 +0100 Subject: [PATCH] ci(bluebuild): symlink podman -> docker (action needs docker CLI) Co-Authored-By: Claude Opus 4.7 --- .github/workflows/build-bluebuild.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-bluebuild.yml b/.github/workflows/build-bluebuild.yml index 2062d26..ab6ae26 100644 --- a/.github/workflows/build-bluebuild.yml +++ b/.github/workflows/build-bluebuild.yml @@ -76,6 +76,12 @@ jobs: buildah \ skopeo \ jq + # blue-build/github-action shells out to `docker`; Fedora ships + # podman. Symlink so the action finds the CLI. + if ! command -v docker >/dev/null; then + ln -sf "$(command -v podman)" /usr/local/bin/docker + docker --version + fi - name: Install cosign binary (upstream release) run: |