ci(bluebuild): symlink podman -> docker (action needs docker CLI)
This commit is contained in:
parent
8926894ceb
commit
9ee2cec20e
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 \
|
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: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue