From 2234aae65e11c106700a1216017394a927c5e1d0 Mon Sep 17 00:00:00 2001 From: Naveen Singh <36371707+naveensingh@users.noreply.github.com> Date: Fri, 13 Feb 2026 21:50:13 +0530 Subject: [PATCH] ci: bump curl timeout for jitpack --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5a5f35fc..bb6e82f16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: run: | TAG='${{ needs.release.outputs.tag }}' echo "Requesting JitPack build for ${TAG}" - curl -fsSL --max-time 10 "https://jitpack.io/org/fossify/commons/${TAG}/commons-${TAG}.pom" || true + curl -fsSL --max-time 180 "https://jitpack.io/org/fossify/commons/${TAG}/commons-${TAG}.pom" || true - name: Wait for JitPack to finish run: | @@ -61,7 +61,7 @@ jobs: sleep 240 for i in $(seq 1 13); do echo "Attempt $i: checking ${URL}?check=${i}" - if curl -fsSIL --max-time 10 "${URL}?check=${i}" > /dev/null 2>&1; then + if curl -fsSIL --max-time 300 "${URL}?check=${i}" > /dev/null 2>&1; then echo "JitPack build successful!" exit 0 fi