Skip to content

Commit

Permalink
github actions: create workflow to build APK in pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
sds100 committed Sep 24, 2023
1 parent 3346706 commit 3b5170d
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Testing - build and release app

on:
pull_request:

jobs:
apk:
name: Build APK
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 1.17
uses: actions/setup-java@v1
with:
java-version: 1.17

- name: Setup Android SDK
uses: android-actions/setup-android@v2

- name: set up Ruby for fastlane
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'

- name: Create debug keystore
run: |
echo "${{ secrets.CI_KEYSTORE }}" > debug.keystore.asc
gpg -d --passphrase "${{ secrets.CI_KEYSTORE_DECRYPT }}" --batch debug.keystore.asc > /home/runner/.android/debug.keystore
- name: Install bundle
run: bundle install

- name: Build apk with fastlane
run: bundle exec fastlane testing
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sh("bundle install")

default_platform(:android)

desc "Create and deploy testing release"
desc "Create testing release"
lane :testing do
gradle(task: "clean assembleCi")
end
Expand Down

0 comments on commit 3b5170d

Please sign in to comment.