ci(bluebuild): symlink podman -> docker (action needs docker CLI)
Some checks failed
Build veilor-os OCI (BlueBuild) / Build + push OCI (push) Failing after 42s

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
claude-veilor-bot 2026-05-06 16:58:50 +01:00
parent 265cac024e
commit 17e2d0523d

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: |