File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 18
18
packages : write
19
19
statuses : read
20
20
strategy :
21
+ fail-fast : false
21
22
matrix :
22
23
include :
23
24
- title : " astral-glibc"
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ SRC_REPO="astral-sh/python-build-standalone"
11
11
pushd " $( mktemp -d) " & > /dev/null && TMPDIR=" $( realpath .) "
12
12
# Fetch Release Metadata
13
13
for i in {1..5}; do
14
- gh api " repos/${SRC_REPO} /releases" --paginate | jq . > " ${TMPDIR} /RELEASES.json" && break
14
+ # gh api "repos/${SRC_REPO}/releases" --paginate | jq . > "${TMPDIR}/RELEASES.json" && break
15
+ gh api " repos/${SRC_REPO} /releases" | jq . > " ${TMPDIR} /RELEASES.json" && break
15
16
echo " Retrying... ${i} /5"
16
17
sleep 2
17
18
done
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ SRC_REPO="astral-sh/python-build-standalone"
11
11
pushd " $( mktemp -d) " & > /dev/null && TMPDIR=" $( realpath .) "
12
12
# Fetch Release Metadata
13
13
for i in {1..5}; do
14
- gh api " repos/${SRC_REPO} /releases" --paginate | jq . > " ${TMPDIR} /RELEASES.json" && break
14
+ # gh api "repos/${SRC_REPO}/releases" --paginate | jq . > "${TMPDIR}/RELEASES.json" && break
15
+ gh api " repos/${SRC_REPO} /releases" | jq . > " ${TMPDIR} /RELEASES.json" && break
15
16
echo " Retrying... ${i} /5"
16
17
sleep 2
17
18
done
You can’t perform that action at this time.
0 commit comments