fixed translations #2
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: NewPass Debug | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/debugCompile.yml | |
- app/** | |
- build.gradle.kts | |
- gradle.properties | |
- gradlew | |
- gradlew.bat | |
- settings.gradle.kts | |
jobs: | |
build_debug_apk: | |
name: Build NewPass Debug APK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build with Gradle | |
id: gradle_build_debug | |
run: ./gradlew assembleDebug | |
- name: Upload debug apk | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-debug | |
path: app/build/outputs/apk/ |