ci(bluebuild): symlink podman -> docker (action needs docker CLI)
Some checks failed
Build veilor-os OCI (BlueBuild) / Build + push OCI (push) Failing after 42s
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:
parent
265cac024e
commit
17e2d0523d
1 changed files with 6 additions and 0 deletions
6
.github/workflows/build-bluebuild.yml
vendored
6
.github/workflows/build-bluebuild.yml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue