Build GTMAppAuth for Valid Architectures #690
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 GTMAppAuth for Valid Architectures | |
on: | |
schedule: | |
- cron: '0 8 * * *' # Cron uses UTC; run at nightly at midnight PST | |
workflow_dispatch: | |
jobs: | |
cron: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-12] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Archive for iOS | |
run: | | |
xcodebuild \ | |
archive \ | |
-scheme GTMAppAuth \ | |
-destination "generic/platform=iOS" | |
- name: Archive for macOS | |
run: | | |
xcodebuild \ | |
archive \ | |
-scheme GTMAppAuth \ | |
-destination "platform=OS X" | |
- name: Archive for watchOS | |
run: | | |
xcodebuild \ | |
archive \ | |
-scheme GTMAppAuth \ | |
-destination "generic/platform=watchOS" | |
- name: Archive for tvOS | |
run: | | |
xcodebuild \ | |
archive \ | |
-scheme GTMAppAuth \ | |
-destination "generic/platform=tvOS" |