Use manual signing for release archives #216
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - codex/** | |
| - feature/** | |
| - release/** | |
| pull_request: | |
| jobs: | |
| macos-tests: | |
| name: Build and Test | |
| runs-on: macos-14 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Select Xcode | |
| uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Run macOS test suite | |
| run: | | |
| xcodebuild test \ | |
| -project Core-Monitor.xcodeproj \ | |
| -scheme Core-Monitor \ | |
| -destination 'platform=macOS' \ | |
| CODE_SIGNING_ALLOWED=NO |