This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
Bump org.jetbrains.kotlin:kotlin-reflect from 1.9.24 to 2.0.10 #1070
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: Android CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: gradle | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug --scan --stacktrace --info --no-daemon -x test | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TeamCode-debug.apk | |
path: TeamCode/build/outputs/apk/debug/TeamCode-debug.apk |