feat(i18n): add languages to in-app language picker #511
Workflow file for this run
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: "Build Pull Request" | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- uses: actions/setup-java@v3.10.0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: gradle/gradle-build-action@v2.4.2 | |
- run: gradle assembleRelease | |
- uses: actions/upload-artifact@v3.1.1 | |
with: | |
name: github-${{ github.sha }} | |
path: app/build/outputs/apk/github/release/*.apk | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: fdroid-${{ github.sha }} | |
path: app/build/outputs/apk/fdroid/release/*.apk |