Skip to content

Commit

Permalink
Add ios job
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskioko committed Sep 20, 2024
1 parent 61296f2 commit 409c3d7
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,28 @@ jobs:
name: common-test-report
path: ./**/build/reports/tests/

ios-app:
runs-on: macos-latest
timeout-minutes: 60

steps:
- name: checkout
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/[email protected]
with:
ruby-version: 3.3.0
bundler-cache: true

- name: Install Bundle & Build
run: |
cd ./ios
bundle install
bundle exec fastlane build_tvmaniac
create-release:
needs: [android, android_lint, android_screenshot_test, common_test, iOS, spotless, jvm_test, ]
needs: [android, android_lint, android_screenshot_test, common_test, ios-app, spotless, jvm_test, ]
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 409c3d7

Please sign in to comment.