mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
parent
2fe91a6c8f
commit
1d221c22e4
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci_macos.yaml
vendored
10
.github/workflows/ci_macos.yaml
vendored
|
@ -124,8 +124,16 @@ jobs:
|
|||
if [ "${{ matrix.qbt_gui }}" = "GUI=OFF" ]; then
|
||||
appName="qbittorrent-nox"
|
||||
fi
|
||||
# package
|
||||
pushd build
|
||||
macdeployqt "$appName.app" -dmg -no-strip
|
||||
PACKAGE_RETRY=0
|
||||
while [ "$PACKAGE_RETRY" -lt "3" ]; do
|
||||
if macdeployqt "$appName.app" -dmg -no-strip; then
|
||||
break
|
||||
fi
|
||||
sleep 5s
|
||||
PACKAGE_RETRY=$((PACKAGE_RETRY + 1))
|
||||
done
|
||||
popd
|
||||
# prepare upload folder
|
||||
mkdir upload
|
||||
|
|
Loading…
Reference in a new issue