mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:49:52 +00:00
GHA CI: revise packaging failure detection
Fix up 1d221c22e4
.
PR #20664.
This commit is contained in:
parent
db384896b8
commit
749746e812
6
.github/workflows/ci_macos.yaml
vendored
6
.github/workflows/ci_macos.yaml
vendored
@ -142,11 +142,13 @@ jobs:
|
||||
pushd build
|
||||
PACKAGE_RETRY=0
|
||||
while [ "$PACKAGE_RETRY" -lt "3" ]; do
|
||||
if macdeployqt "$appName.app" -dmg -no-strip; then
|
||||
macdeployqt "$appName.app" -dmg -no-strip
|
||||
if [ -f "$appName.dmg" ]; then
|
||||
break
|
||||
fi
|
||||
sleep 5s
|
||||
sleep 5
|
||||
PACKAGE_RETRY=$((PACKAGE_RETRY + 1))
|
||||
echo "Retry $PACKAGE_RETRY..."
|
||||
done
|
||||
popd
|
||||
# prepare upload folder
|
||||
|
Loading…
Reference in New Issue
Block a user