1
0
mirror of synced 2025-02-08 15:08:11 +01:00

git: Try creating dmg a few times again in case XProtect is being a bitch

This commit is contained in:
WerWolv 2025-01-30 22:25:00 +01:00
parent 2062a23347
commit d0b32e5224

View File

@ -376,7 +376,12 @@ jobs:
cd create-dmg
npm i && npm -g i
cd ../build/install
for i in $(seq 1 10); do
create-dmg ImHex.app || true
if ls -d *.dmg 1>/dev/null 2>/dev/null; then
break;
fi
done
mv *.dmg ../../imhex-${{ env.IMHEX_VERSION }}-macOS${{ matrix.suffix }}-x86_64.dmg
- name: 🗝️ Generate build provenance attestations
@ -490,7 +495,12 @@ jobs:
cd create-dmg
npm i && npm -g i
cd ../out
for i in $(seq 1 10); do
create-dmg ImHex.app || true
if ls -d *.dmg 1>/dev/null 2>/dev/null; then
break;
fi
done
mv *.dmg ../imhex-${{ env.IMHEX_VERSION }}-macOS${{ matrix.suffix }}-arm64.dmg
- name: 🗝️ Generate build provenance attestations