Update password dialog titles and subtitles; improve localization str… #88
Workflow file for this run
This file contains hidden or 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 CD | |
| on: | |
| push: | |
| tags: | |
| - android/* | |
| jobs: | |
| ui_test_job: | |
| name: UI-tests on emulator | |
| runs-on: macos-latest | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| api-level: [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ] | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'oracle' | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-read-only: false | |
| cache-overwrite-existing: true | |
| - name: Decrypt large secret | |
| run: ./.github/scripts/decrypt_secret.sh | |
| env: | |
| LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} | |
| - name: Run UI-tests on emulator | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: ${{ matrix.api-level }} | |
| target: google_apis | |
| script: ./gradlew :android-compose-app:connectedCheck | |
| build_unit_test_publish_job: | |
| name: Build -> Unit-test -> Publish | |
| needs: ui_test_job | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'oracle' | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-read-only: false | |
| cache-overwrite-existing: true | |
| - name: Decrypt large secret | |
| run: ./.github/scripts/decrypt_secret.sh | |
| env: | |
| LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} | |
| - name: Upload to Google Play | |
| run: fastlane build_bundle_publish | |
| - name: Archive build artifacts | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-artifacts | |
| path: | | |
| android-compose-app/build/outputs | |
| android-compose-app/build/reports |