From 5b7fa87fbe533c28c5ff8542d078fbb1fa6a4c8c Mon Sep 17 00:00:00 2001 From: amiromaest-pixel Date: Wed, 16 Sep 2026 08:12:40 +0100 Subject: [PATCH 1/2] Create android.yml --- github/workflows/android.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 github/workflows/android.yml diff --git a/github/workflows/android.yml b/github/workflows/android.yml new file mode 100644 index 00000000..662ae7ee --- /dev/null +++ b/github/workflows/android.yml @@ -0,0 +1,23 @@ +name: Build Android APK +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - name: Build Debug APK + working-directory: apps/android + run: | + chmod +x gradlew + ./gradlew :app:assembleDebug + - name: Upload APK + uses: actions/upload-artifact@v4 + with: + name: mural-android-app + path: apps/android/app/build/outputs/apk/debug/app-debug.apk From e64dc436035e7233070d36c5128d2cdbff364aba Mon Sep 17 00:00:00 2001 From: amiromaest-pixel Date: Wed, 16 Sep 2026 08:29:56 +0100 Subject: [PATCH 2/2] Create android.yml --- .githubworkflows/android.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .githubworkflows/android.yml diff --git a/.githubworkflows/android.yml b/.githubworkflows/android.yml new file mode 100644 index 00000000..662ae7ee --- /dev/null +++ b/.githubworkflows/android.yml @@ -0,0 +1,23 @@ +name: Build Android APK +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - name: Build Debug APK + working-directory: apps/android + run: | + chmod +x gradlew + ./gradlew :app:assembleDebug + - name: Upload APK + uses: actions/upload-artifact@v4 + with: + name: mural-android-app + path: apps/android/app/build/outputs/apk/debug/app-debug.apk