Skip to content

Run preternatural GitHub action to build for all platforms #99

Run preternatural GitHub action to build for all platforms

Run preternatural GitHub action to build for all platforms #99

Workflow file for this run

name: Preternatural Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions: write-all
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@v4
- name: Configure Git
run: |
echo "https://oauth2:${{ secrets.TAHA_PERSONAL_ACCESS_TOKEN }}@github.com" > ~/.git-credentials
git config --global credential.helper store
- name: Check out repository
uses: actions/checkout@v4
with:
repository: PreternaturalAI/internal-github-action
ref: build-from-source-and-reuse-build-artifacts
token: ${{ secrets.TAHA_PERSONAL_ACCESS_TOKEN }}
path: ./.github/actions/internal-github-action
- name: Run my action
uses: ./.github/actions/internal-github-action/preternatural-build
with:
xcode-version: '16'
configurations: '["debug"]'