We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa049e commit 0ac9b7cCopy full SHA for 0ac9b7c
1 file changed
action.yml
@@ -91,8 +91,9 @@ runs:
91
break
92
fi
93
attempt=$((attempt + 1))
94
- echo "::warning::Attempt $attempt failed to fetch version, retrying in 60 seconds. stdout: ${version_tag}" >&2
95
- sleep 60
+ delay=$((10 + attempt * 10))
+ echo "::warning::Attempt $attempt failed to fetch version, retrying in $delay seconds. stdout: ${version_tag}" >&2
96
+ sleep $delay
97
done
98
99
if [[ -z "$version" ]]; then
0 commit comments