From bf45e700ddce67525c69603c1c41e0af9c2fb489 Mon Sep 17 00:00:00 2001 From: Akshat Patel Date: Sun, 27 Apr 2025 20:42:35 +0530 Subject: [PATCH] Update build action --- .github/workflows/preternatural-build.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/preternatural-build.yml b/.github/workflows/preternatural-build.yml index 181b18e..2726ed3 100644 --- a/.github/workflows/preternatural-build.yml +++ b/.github/workflows/preternatural-build.yml @@ -5,14 +5,21 @@ on: pull_request: branches: [ main ] workflow_dispatch: - concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true - jobs: - build: - uses: PreternaturalAI/preternatural-github-actions/.github/workflows/preternatural-build.yml@main - with: - xcode-version: '16' - configurations: '["debug"]' \ No newline at end of file + preternatural-build: + name: Build (Xcode ${{ matrix.xcode }}) + runs-on: ghcr.io/cirruslabs/macos-runner:sequoia + strategy: + matrix: + xcode: ['16.2', '16.3'] + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Run Preternatural Build + uses: PreternaturalAI/preternatural-github-actions/preternatural-build@main + with: + xcode-version: ${{ matrix.xcode }} + configurations: '["debug"]' \ No newline at end of file