Add local-first macOS app and Stable Audio support #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macOS App | |
| on: | |
| push: | |
| paths: | |
| - "apps/macos/**" | |
| - ".github/workflows/macos-app.yml" | |
| pull_request: | |
| paths: | |
| - "apps/macos/**" | |
| - ".github/workflows/macos-app.yml" | |
| jobs: | |
| unsigned-build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build SwiftPM app | |
| working-directory: apps/macos | |
| run: swift build | |
| - name: Stage unsigned app | |
| run: apps/macos/script/build_and_run.sh --no-open | |
| - name: Upload ORAM.app | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ORAM-unsigned-app | |
| path: apps/macos/dist/ORAM.app |