Merge pull request #6 from zonble/copilot/fix-5 #10
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: [ master, main ] | |
pull_request: | |
branches: [ master, main ] | |
jobs: | |
build: | |
name: Build Bunt | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | |
- name: Show Xcode version | |
run: xcodebuild -version | |
- name: Show available targets and schemes | |
run: xcodebuild -project Bunt.xcodeproj -list | |
- name: Build project | |
run: | | |
xcodebuild -project Bunt.xcodeproj \ | |
-target Bunt \ | |
-configuration Release \ | |
-sdk macosx \ | |
build \ | |
CODE_SIGN_IDENTITY="" \ | |
CODE_SIGNING_REQUIRED=NO \ | |
CODE_SIGNING_ALLOWED=NO |