feat: show previous selected engine if multiple available (e.g. Mozhi) #727
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "README*.md" | |
- "fastlane/**" | |
- "assets/**" | |
- ".github/**/*.md" | |
push: | |
paths-ignore: | |
- "README*.md" | |
- "fastlane/**" | |
- "assets/**" | |
- ".github/**/*.md" | |
jobs: | |
debug-builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: "temurin" | |
cache: "gradle" | |
- name: Compile | |
run: | | |
./gradlew assembleDebug | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app | |
path: app/build/outputs/apk/debug/*.apk |