diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-16 18:33:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 18:33:59 -0400 |
commit | 814a8b6d715e1e8d729c58921695c65eec0e71bc (patch) | |
tree | 8a4f6948bc582483de6d2408411d673e3081a727 /.github | |
parent | e73a7dadac5a8c74c3a020993de94ed88fd6a04e (diff) | |
parent | 6b230bc92448de0af2a3f25ff79ffd28d3a0ee14 (diff) | |
download | podman-814a8b6d715e1e8d729c58921695c65eec0e71bc.tar.gz podman-814a8b6d715e1e8d729c58921695c65eec0e71bc.tar.bz2 podman-814a8b6d715e1e8d729c58921695c65eec0e71bc.zip |
Merge pull request #10692 from cevich/fix_clone_fail
[CI:DOCS] Fix multi-arch image build clone:failure
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/multi-arch-build.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/multi-arch-build.yaml b/.github/workflows/multi-arch-build.yaml index 2ade44ee6..9bd98078b 100644 --- a/.github/workflows/multi-arch-build.yaml +++ b/.github/workflows/multi-arch-build.yaml @@ -72,7 +72,10 @@ jobs: if: matrix.source == 'stable' id: sniff_test run: | - VERSION_OUTPUT="$(docker run localhost:5000/podman/${{ matrix.source }} \ + podman pull --tls-verify=false \ + localhost:5000/podman/${{ matrix.source }} + VERSION_OUTPUT="$(podman run \ + localhost:5000/podman/${{ matrix.source }} \ podman --storage-driver=vfs version)" echo "$VERSION_OUTPUT" VERSION=$(grep -Em1 '^Version: ' <<<"$VERSION_OUTPUT" | awk '{print $2}') |