feat: bump Xcode version to 15.1.0 for workflow files #186
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "build" | |
cancel-in-progress: true | |
jobs: | |
build-ios: | |
name: Build For iOS | |
uses: ./.github/workflows/build-ios.yml | |
build-macos: | |
name: Build For macOS | |
uses: ./.github/workflows/build-macos.yml | |
build-deploy-docs: | |
name: Build and Deploy Docs | |
uses: ./.github/workflows/build-deploy-docs.yml | |
if: github.ref == 'refs/heads/main' |