From ab160beb27e636cde21c45bd6eabfaf0413f69ab Mon Sep 17 00:00:00 2001 From: nullchinchilla Date: Wed, 26 Jun 2024 19:38:53 -0400 Subject: [PATCH] Add continue-on-error and icon settings to Create macOS DMG step in CI workflow --- .github/workflows/build_and_upload.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_upload.yml b/.github/workflows/build_and_upload.yml index 9f23f9e..fc5b193 100644 --- a/.github/workflows/build_and_upload.yml +++ b/.github/workflows/build_and_upload.yml @@ -99,12 +99,14 @@ jobs: - name: Create macOS DMG if: matrix.os == 'macos-latest' + continue-on-error: true run: | create-dmg \ --volname "Geph Installer" \ --window-pos 200 120 \ --window-size 600 400 \ - + --icon-size 100 \ + --icon "Geph.app" 175 120 \ --hide-extension "Geph.app" \ --app-drop-link 425 120 \ "artifacts/${{ matrix.dir }}/geph-macos.dmg" \