Build for Android 14 #27
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: main CI | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v2 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: build | |
run: ./gradlew assembleDebug --no-daemon | |
- name: Upload APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: meteroid-debug.apk | |
path: meteroid/build/outputs/apk/debug/meteroid-debug.apk | |
- name: build | |
run: ./gradlew lint --no-daemon |