From 07e62dd481d3ae36b0b0af4c587ef50f760f7cfd Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Thu, 13 Aug 2026 22:04:34 -0400 Subject: [PATCH] fix(ci): drop --max-concurrent-uploads (not a valid docker push flag) That flag only exists for docker buildx / docker buildx imagetools. docker push in this version rejects it as unknown. Revert to plain docker push with the retry loop. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a3e3771..050da6c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -93,7 +93,7 @@ jobs: local max_attempts=5 while [ $attempt -le $max_attempts ]; do echo "=== Push (attempt $attempt/$max_attempts): $ref ===" - if docker push --max-concurrent-uploads=1 "$ref"; then + if docker push "$ref"; then return 0 fi echo "::warning::Push of $ref failed, retrying in 30s..."