From dd4be385bd56d6acdf1dd43a6f201eca99d2ffdc Mon Sep 17 00:00:00 2001 From: "Agbara (OpenClaw Agent)" Date: Sun, 12 Apr 2026 18:38:32 +0800 Subject: [PATCH] ci: Add GitHub Actions workflow to build OpenClaw integration APK Uses GitHub Actions' configured Android SDK (proven to work for this repo). Builds debug APK on ubuntu-latest runner. Uploads APK to artifacts for download. Target branch: feature/openclaw-integration --- .github/workflows/build-openclaw-now.yml | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build-openclaw-now.yml diff --git a/.github/workflows/build-openclaw-now.yml b/.github/workflows/build-openclaw-now.yml new file mode 100644 index 00000000..a086fb42 --- /dev/null +++ b/.github/workflows/build-openclaw-now.yml @@ -0,0 +1,36 @@ +name: Build OpenClaw APK + +on: + push: + branches: [ feature/openclaw-integration ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + ref: feature/openclaw-integration + + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Make gradlew executable + run: chmod +x gradlew + + - name: Build Debug APK + run: | + ./gradlew assembleDebug --console=plain + + - name: Upload APK Artifact + uses: actions/upload-artifact@v4 + with: + name: openclaw-debug-apk + path: app/build/outputs/apk/debug/*.apk + retention-days: 7