Skip to content

Commit

Permalink
ci: Build iOS app with fastlane
Browse files Browse the repository at this point in the history
Adds all the signing keys and other credentials required for a
successful production build.

Additionally, opens the door to deploying via CI.
  • Loading branch information
thehale committed Jun 23, 2024
1 parent 9a27316 commit 16eee8e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "iOS"

on:
push:
branches: ["master", "ci"]

jobs:
build:
timeout-minutes: 20
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install dependencies
run: |
yarn install
yarn pods
- name: Build Application
run: |
echo $SECRETS_TAR_GZ_B64 | base64 -d | tar -xz -C fastlane
bundle exec fastlane certificates
bundle exec fastlane ios build
env:
SECRETS_TAR_GZ_B64: ${{ secrets.SECRETS_TAR_GZ_B64 }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

0 comments on commit 16eee8e

Please sign in to comment.