From bf90a567ce20706770fcdebed8f7bd2504169727 Mon Sep 17 00:00:00 2001 From: Tom Lee Date: Mon, 22 Jan 2024 00:31:48 -0800 Subject: [PATCH] Use fastline in CI --- .github/workflows/ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5080d8..face4b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,15 @@ jobs: distribution: temurin java-version: 21 - # Generate AAR and POM files - - name: Release build - run: ./gradlew assembleRelease + # Setup Ruby + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3 + + # Setup Fastlane + - name: Setup Fastlane + run: bundle install + + - name: Build AAR and POM files + run: bundle exec fastlane build_example_app