We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceec0bf commit ff1f892Copy full SHA for ff1f892
.github/workflows/build.yml
@@ -85,6 +85,14 @@ jobs:
85
- name: Run tests
86
run: ctest --test-dir build --output-on-failure
87
88
+ - name: Prepare macOS for DMG creation
89
+ if: runner.os == 'macOS'
90
+ run: |
91
+ # Unmount any stale volumes
92
+ hdiutil detach "/Volumes/Virtual MIDI Controller" -force || true
93
+ # Disable Spotlight indexing to prevent volume locking
94
+ sudo mdutil -a -i off
95
+
96
- name: Installer
97
run: cmake --build build --target installer --config Release
98
0 commit comments