"lib/bindings/python/vscode:/vscode.git/clone" did not exist on "f0065bb41cb8c0edefe731886afa704d039b5b53"
Unverified Commit adb95725 authored by Dmitry Tokarev's avatar Dmitry Tokarev Committed by GitHub
Browse files

fix: Remove --retry-delay flag from skopeo (#6501)


Signed-off-by: default avatarDmitry Tokarev <dtokarev@nvidia.com>
parent 5c2e55c7
...@@ -109,7 +109,7 @@ runs: ...@@ -109,7 +109,7 @@ runs:
RETRY_DELAY=10 RETRY_DELAY=10
for attempt in $(seq 1 $MAX_RETRIES); do for attempt in $(seq 1 $MAX_RETRIES); do
echo "Attempt ${attempt}/${MAX_RETRIES}..." echo "Attempt ${attempt}/${MAX_RETRIES}..."
if skopeo copy --all --retry-times 4 --retry-delay 5s "${SOURCE_REF}" "${TARGET_REF}"; then if skopeo copy --all --retry-times 4 "${SOURCE_REF}" "${TARGET_REF}"; then
echo "target_image_ref=${{ inputs.target_registry }}/${TARGET_IMAGE}:${TARGET_TAG}" >> $GITHUB_OUTPUT echo "target_image_ref=${{ inputs.target_registry }}/${TARGET_IMAGE}:${TARGET_TAG}" >> $GITHUB_OUTPUT
echo "✅ Image copied successfully" echo "✅ Image copied successfully"
exit 0 exit 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment