diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce956c6c..138752f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,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