Update README.md #193
Workflow file for this run
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-watchos: | |
name: Build For watchOS | |
uses: ./.github/workflows/build-watchos.yml | |
build-deploy-docs: | |
name: Build and Deploy Docs | |
uses: ./.github/workflows/build-deploy-docs.yml | |
if: github.ref == 'refs/heads/main' |