name: Build on: push: branches: [main] pull_request: branches: [main] jobs: build: runs-on: macos-15 steps: - uses: actions/checkout@v4 - name: Install XcodeGen run: brew install xcodegen - name: Generate Xcode project run: xcodegen generate - name: Build (Universal Binary) run: | xcodebuild -project PureMac.xcodeproj \ -scheme PureMac \ -configuration Release \ -derivedDataPath build \ build \ ARCHS="arm64 x86_64" \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_ALLOWED=NO