Improve layout safety and release v1.0.1 #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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| macos: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate metadata and scripts | |
| run: | | |
| plutil -lint OverflowBar/Resources/Info.plist | |
| bash -n scripts/create-dmg.sh | |
| - name: Build Debug | |
| run: >- | |
| xcodebuild -project OverflowBar.xcodeproj -scheme OverflowBar | |
| -configuration Debug -destination 'generic/platform=macOS' | |
| -derivedDataPath .ci-build CODE_SIGNING_ALLOWED=NO build | |
| - name: Build Release | |
| run: >- | |
| xcodebuild -project OverflowBar.xcodeproj -scheme OverflowBar | |
| -configuration Release -destination 'generic/platform=macOS' | |
| -derivedDataPath .ci-release CODE_SIGNING_ALLOWED=NO build |