Skip to content

Commit

Permalink
chore: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Mar 7, 2025
1 parent 3253375 commit 50afdf0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/workflows/reusable-ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,35 @@ jobs:
with:
ruby-version: "3.0"
bundler-cache: true
working-directory: ios/App
working-directory: ios

# https://docs.fastlane.tools/actions/build_ios_app/
- uses: maierj/[email protected]
- name: Build IOS
env:
workspace: App.xcworkspace
workspace: App/App.xcworkspace
configuration: debug
scheme: "App"
output_name: "app.ipa"
sdk: "iOS 11.1"
with:
lane: build_ios_app
subdirectory: ios/App
working-directory: ios
run: |
fastlane run build_ios_app
--workspace "${{env.workspace}}"
--configuration "${{env.configuration}}"
--scheme "${{env.scheme}}"
--output_name "${{env.output_name}}"
--sdk "${{env.sdk}}"
# https://docs.fastlane.tools/actions/build_ios_app/
# - uses: maierj/[email protected]
# env:
# workspace: App/App.xcworkspace
# configuration: debug
# scheme: "App"
# output_name: "app.ipa"
# sdk: "iOS 11.1"
# with:
# lane: build_ios_app
# subdirectory: ios
options: '{"workspace": "${{env.workspace}}","configuration": "${{env.configuration}}","scheme": "${{env.scheme}}","output_name": "${{env.output_name}}","sdk": "${{env.sdk}}"}'

# TODO - google plist
Expand Down
3 changes: 3 additions & 0 deletions ios/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org"

gem "fastlane"

0 comments on commit 50afdf0

Please sign in to comment.