Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion images/local-cache-registry
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ declare -a IMAGELIST=(
testimage:20241011
testimage:multiimage
testimage@sha256:1385ce282f3a959d0d6baf45636efe686c1e14c3e7240eb31907436f7bc531fa
testdigest_v2s2:20200210
testdigest_v2s2@sha256:755f4d90b3716e2bf57060d249e2cd61c9ac089b1233465c5c2cb2d7ee550fdb
volume-plugin-test-img:20260807
podman/stable:v5.3.1
Expand Down
2 changes: 1 addition & 1 deletion scripts/upload-to-oci-par.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for f in "$@"; do
base="$(basename "$f")"
target="${OCI_PAR_URL%/}/releases/${VERSION}/${base}"
echo "PUT $f -> releases/${VERSION}/${base}"
curl --fail -sS \
curl --fail -sS --retry 5 --retry-all-errors \
-H 'Content-Type: application/octet-stream' \
--upload-file "$f" \
"$target"
Expand Down
Loading