repair github actions warnings and errors

This commit is contained in:
2025-10-19 01:26:35 -07:00
parent 7a488ad91b
commit a750b0f6d1
5 changed files with 24 additions and 13 deletions

View File

@@ -2,18 +2,19 @@
set -e
retry() {
for i in $(seq 1 10); do
if "${@}"; then
return 0
else
sleep "${i}"
fi
done
"${@}"
for i in $(seq 1 10); do
if "${@}"; then
return 0
else
sleep "${i}"
fi
done
"${@}"
}
TAG="${1}"
shift
if [ -z "${RELEASE_TAG}" ]; then
exit 1
fi
cd target/assemble