Skip to content

Merge pull request #6 from zonble/copilot/fix-5 #10

Merge pull request #6 from zonble/copilot/fix-5

Merge pull request #6 from zonble/copilot/fix-5 #10

Workflow file for this run

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