git: Try creating dmg a few times again in case XProtect is being a bitch
This commit is contained in:
parent
2062a23347
commit
d0b32e5224
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -376,7 +376,12 @@ jobs:
|
|||||||
cd create-dmg
|
cd create-dmg
|
||||||
npm i && npm -g i
|
npm i && npm -g i
|
||||||
cd ../build/install
|
cd ../build/install
|
||||||
|
for i in $(seq 1 10); do
|
||||||
create-dmg ImHex.app || true
|
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
|
mv *.dmg ../../imhex-${{ env.IMHEX_VERSION }}-macOS${{ matrix.suffix }}-x86_64.dmg
|
||||||
|
|
||||||
- name: 🗝️ Generate build provenance attestations
|
- name: 🗝️ Generate build provenance attestations
|
||||||
@ -490,7 +495,12 @@ jobs:
|
|||||||
cd create-dmg
|
cd create-dmg
|
||||||
npm i && npm -g i
|
npm i && npm -g i
|
||||||
cd ../out
|
cd ../out
|
||||||
|
for i in $(seq 1 10); do
|
||||||
create-dmg ImHex.app || true
|
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
|
mv *.dmg ../imhex-${{ env.IMHEX_VERSION }}-macOS${{ matrix.suffix }}-arm64.dmg
|
||||||
|
|
||||||
- name: 🗝️ Generate build provenance attestations
|
- name: 🗝️ Generate build provenance attestations
|
||||||
|
Loading…
x
Reference in New Issue
Block a user