Update plugin com.android.library to v9 #757
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pre Merge Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| gradle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - name: Build and Test everything | |
| uses: gradle/gradle-build-action@v3 | |
| with: | |
| arguments: build publishToMavenLocal | |
| - name: Upload Library Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: 'snapshot-artifacts' | |
| path: '~/.m2/repository/' | |
| - name: Upload the built Apk | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: debug-apk | |
| path: example/build/outputs/apk/debug/example-debug.apk |