Merge pull request #5557 from aneesh1122/master #8648
This file contains 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: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "corretto" | |
cache: gradle | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug | |
# - uses: actions/upload-artifact@v4 | |
# with: | |
# name: app-debug.apk | |
# path: app/build/outputs/apk/debug/app-debug.apk |