Skip to content

Commit

Permalink
Hopefully jank fix for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Oct 7, 2024
1 parent 2aadb98 commit f8f101c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ jobs:
- name: Build
run: cargo build --bin moonlight-installer --release
- name: Bundle
run: cargo bundle --bin moonlight-installer --release
run: |
cd ./crates/moonlight-installer
cargo bundle --bin moonlight-installer --release
cd ../..
cp -r ./crates/moonlight-installer/target/bundle/osx ./target/release/bundle
- name: Apply ad-hoc signature
run: codesign --force --deep -s - "target/release/bundle/osx/moonlight installer.app"
- name: Create DMG
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/target
target/
.DS_Store

0 comments on commit f8f101c

Please sign in to comment.