Merge pull request #1 from sedwards-ibowl/master #5
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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Build MacDependency | |
| run: | | |
| cd MacDependency | |
| xcodebuild -project MacDependency.xcodeproj \ | |
| -scheme MacDependency \ | |
| -configuration Release \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| AD_HOC_CODE_SIGNING_ALLOWED=YES \ | |
| ONLY_ACTIVE_ARCH=YES \ | |
| build |