Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

remove old model & editor #14

remove old model & editor

remove old model & editor #14

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build debug APK
id: build
uses: gradle/gradle-build-action@v2
with:
arguments: assembleDebug
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: apk-debug
path: app/build/outputs/apk/debug/app-debug.apk