From 354ab4ae660f90ac3bbbd38b2c3ab3f241191c6a Mon Sep 17 00:00:00 2001 From: Akshat Patel Date: Fri, 17 Jan 2025 16:21:13 +0530 Subject: [PATCH] Update build workflow --- .github/workflows/build.yml | 26 ----------------------- .github/workflows/preternatural-build.yml | 18 ++++++++++++++++ 2 files changed, 18 insertions(+), 26 deletions(-) delete mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/preternatural-build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 1821da1..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Preternatural Build -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - build: - runs-on: ghcr.io/cirruslabs/macos-runner:sonoma - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Run Preternatural Build (Xcode 16) - uses: PreternaturalAI/github-action/preternatural-build@main - with: - xcode-version: '16' - platforms: 'macOS' - configurations: '["debug"]' - fuck-swift-syntax: true diff --git a/.github/workflows/preternatural-build.yml b/.github/workflows/preternatural-build.yml new file mode 100644 index 0000000..181b18e --- /dev/null +++ b/.github/workflows/preternatural-build.yml @@ -0,0 +1,18 @@ +name: Build +on: + push: + branches: [ main ] + 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