We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acfd352 commit 06f180cCopy full SHA for 06f180c
.github/workflows/release.yml
@@ -50,7 +50,7 @@ jobs:
50
run: |
51
TAG='${{ needs.release.outputs.tag }}'
52
echo "Requesting JitPack build for ${TAG}"
53
- 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
54
55
- name: Wait for JitPack to finish
56
@@ -61,7 +61,7 @@ jobs:
61
sleep 240
62
for i in $(seq 1 13); do
63
echo "Attempt $i: checking ${URL}?check=${i}"
64
- 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
65
echo "JitPack build successful!"
66
exit 0
67
fi
0 commit comments