Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksongoode committed Sep 2, 2024
1 parent 4db9cce commit 8788d98
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 8788d98

Please sign in to comment.