-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.19 KB
/
ios.yml
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
36
37
38
39
40
41
42
43
44
45
46
name: iOS CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- name: Check Xcode version
run: /usr/bin/xcodebuild -version
- name: Checkout Repo
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Setup gradle
uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
- name: Build App
uses: yukiarrr/[email protected]
with:
project-path: iosApp/iosApp.xcodeproj
p12-base64: ${{ secrets.IOS_DEV_CERT }}
mobileprovision-base64: ${{ secrets.IOS_PROVISIONING_PROFILE }}
code-signing-identity: "Geoff Powell"
configuration: "Debug"
certificate-password: ${{ secrets.IOS_CERT_PASSWORD }}
scheme: "iosApp"
build-destination: "generic/platform=iOS"
team-id: ${{ secrets.IOS_TEAM_ID }}