This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
Lang: Updated Language Files. #673
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
# Builds the project and uploads a debug APK | |
name: Android PR CI | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build, Sign & Upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4.2.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4.5.0 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- uses: actions/cache@v4.1.2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean && ./gradlew assembleDebug | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: Signed app bundle | |
path: app/build/outputs/apk/debug/*.apk | |
retention-days: 3 |