Skip to content

Commit

Permalink
ci: Build Android 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 2eecec9 commit c0d8481
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ jobs:
with:
distribution: temurin
java-version: 17
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.10
bundler-cache: true
- name: Build Application
run: |
cd android
./gradlew bundleRelease
cat SECRETS_TAR_GZ_B64 | base64 -d | tar -xz -C fastlane
fastlane android build
env:
SECRETS_TAR_GZ_B64: ${{ secrets.SECRETS_TAR_GZ_B64 }}

0 comments on commit c0d8481

Please sign in to comment.