From 8788d98ca570ea112c7ffcf8a56ef77a1592f70b Mon Sep 17 00:00:00 2001 From: Jackson Goode Date: Sun, 1 Sep 2024 21:51:43 -0700 Subject: [PATCH] Try --- .github/workflows/build.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2bbb465..470eb502 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,10 +80,21 @@ jobs: if: runner.os == 'macOS' && steps.cache-cargo-bundle.outputs.cache-hit != 'true' run: cargo install cargo-bundle + - name: Verify icon file + if: runner.os == 'macOS' + run: | + if [ -f "psst-gui/assets/logo.icns" ]; then + echo "Icon file found" + else + echo "Icon file not found" + exit 1 + fi + - name: Bundle macOS Release if: runner.os == 'macOS' - run: cargo bundle --release - # working-directory: psst-gui + run: | + cd psst-gui + cargo bundle --release - name: Create macOS universal binary if: runner.os == 'macOS'