From 591fe2dfe85fa603e9f2d05b73bb715a6cd6a91f Mon Sep 17 00:00:00 2001 From: Akshat Patel Date: Sun, 27 Apr 2025 20:43:41 +0530 Subject: [PATCH] Update build action --- .github/workflows/preternatural-build.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/preternatural-build.yml b/.github/workflows/preternatural-build.yml index b0a7712..d807cbd 100644 --- a/.github/workflows/preternatural-build.yml +++ b/.github/workflows/preternatural-build.yml @@ -3,20 +3,21 @@ on: push: branches: [ master ] workflow_dispatch: - concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true - jobs: - build: + 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 (Xcode 16) - uses: PreternaturalAI/preternatural-github-actions/preternatural-build@main - with: - xcode-version: '16' - configurations: '["debug"]' + - 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