Multiple Publisher Support #61
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 Project | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Apple Xcode Select | |
uses: BoundfoxStudios/action-xcode-select@v1 | |
with: | |
version: latest | |
beta: false | |
- name: Build iOS | |
uses: sersoft-gmbh/xcodebuild-action@v3 | |
with: | |
project: Example/HierarchyResponderExample.xcodeproj | |
scheme: HierarchyResponderExample | |
destination: generic/platform=iOS Simulator | |
action: build | |
- name: Build Mac Raw | |
run: swift build | |
- name: Build Watch | |
uses: sersoft-gmbh/xcodebuild-action@v3 | |
with: | |
project: Example/HierarchyResponderExample.xcodeproj | |
scheme: HierarchyResponderExampleWatch | |
destination: generic/platform=watchOS Simulator | |
action: build |