forked from google/GoogleSignIn-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 805 Bytes
/
builds.yml
File metadata and controls
35 lines (32 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build GSI for Valid Architectures
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '0 8 * * *' # Cron uses UTC; run at nightly at midnight PST
jobs:
cron:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-15]
steps:
- uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
- name: Archive for iOS
run: |
xcodebuild \
archive \
-scheme GoogleSignIn-Package \
-destination "generic/platform=iOS"
- name: Archive for macOS
run: |
xcodebuild \
archive \
-scheme GoogleSignIn-Package \
-destination "platform=OS X"