Skip to content

Update Crowdin configuration file #10

Update Crowdin configuration file

Update Crowdin configuration file #10

Workflow file for this run

name: Android CI (Test)
on:
push:
branches:
- "master"
paths-ignore:
- "**.md"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleRelease --build-cache --parallel --daemon --warning-mode all
- name: Upload apk
uses: actions/[email protected]
with:
name: app-release
path: "${{ github.workspace }}/app/build/outputs/apk/release/*.apk"