New Crowdin updates #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: | |
- 'dev' | |
pull_request: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '18' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Decode Google Services Info | |
uses: timheuer/base64-to-file@v1.2 | |
with: | |
fileName: 'google-services.json' | |
fileDir: '.' | |
encodedString: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build App bundle | |
run: ./gradlew bundleRelease | |
- name: Build APKS | |
run: ./gradlew assembleRelease |