diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ed4ed6..a83988f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,14 @@ jobs: - name: Build with Gradle run: ./gradlew assembleDebug + - name: Generate Android.bp + run: | + ./gradlew app:generateBp + if [[ ! -z $(git status -s) ]]; then + git status + exit -1 + fi + - uses: actions/upload-artifact@v3 with: name: app-debug.apk