ci(bluebuild): symlink podman -> docker (action needs docker CLI)

This commit is contained in:
obsidian-ai 2026-05-06 16:58:50 +01:00
parent 8926894ceb
commit 9ee2cec20e

View file

@ -76,6 +76,12 @@ jobs:
buildah \ buildah \
skopeo \ skopeo \
jq 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) - name: Install cosign binary (upstream release)
run: | run: |