Skip to content

Build GTMAppAuth for Valid Architectures #692

Build GTMAppAuth for Valid Architectures

Build GTMAppAuth for Valid Architectures #692

Workflow file for this run

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"