name: Docker Build (Unsigned APK) on: workflow_dispatch: push: branches: [docker-build] jobs: build: name: Build unsigned APK runs-on: ubuntu-latest container: image: sudorsingh/lensapp-builder:latest steps: - name: Checkout uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Build unsigned APK working-directory: android run: ./gradlew assembleRelease --no-daemon - name: Upload APK uses: https://github.com/christopherHX/gitea-upload-artifact@v3 with: name: LensApp-unsigned-${{ github.run_number }} path: android/app/build/outputs/apk/release/*.apk retention-days: 30