Missed that the top directory is app and not build #10
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: Android CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 Debug APK with Gradle | |
run: | | |
./gradlew build | |
./gradlew assembleDebug | |
export git_hash=$(git rev-parse --short "${{ github.sha }}") | |
mv app/build/outputs/apk/debug/app-debug.apk ~/RNGTool-Android-Debug-$git_hash.apk | |
- name: Publish Debug APK | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
path: ~/*.apk | |
name: RNGTool-Android-Debug |