fix(release): embed Developer ID provisioning profile in app bundle #69
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: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build (Debug) | |
| runs-on: macos-26 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode.app | |
| - name: Resolve Swift Packages | |
| run: | | |
| xcodebuild -resolvePackageDependencies \ | |
| -project DoomCoder.xcodeproj \ | |
| -scheme DoomCoder | |
| - name: Build | |
| run: | | |
| xcodebuild \ | |
| -project DoomCoder.xcodeproj \ | |
| -scheme DoomCoder \ | |
| -configuration Debug \ | |
| -destination 'platform=macOS' \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=YES \ | |
| build |