New translations full_description.txt (Serbian (Latin)) #361
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 | |
jobs: | |
test: | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Unit Tests | |
run: bash ./gradlew test -Pbase64EncodedPublicKey=${{secrets.PUBLIC_KEY}} --stacktrace | |
apk: | |
name: Generate APK | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Assemble App Debug APK | |
run: ./gradlew assembleDebug -Pbase64EncodedPublicKey=${{secrets.PUBLIC_KEY}} --stacktrace | |
- name: Upload App Play APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app-play-debug | |
path: app/build/outputs/apk/play/debug/app-play-debug.apk | |
- name: Upload App F-Droid APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app-fdroid-debug | |
path: app/build/outputs/apk/fdroid/debug/app-fdroid-debug.apk |