Fix iOS Deployment #110
Workflow file for this run
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: 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: "iOS Developer" | |
configuration: "Debug" | |
certificate-password: ${{ secrets.IOS_CERT_PASSWORD }} | |
scheme: "iosApp" | |
build-destination: "generic/platform=iOS" | |
team-id: ${{ secrets.IOS_TEAM_ID }} |