Skip to content

Feat/seperate text recog module #37

Feat/seperate text recog module

Feat/seperate text recog module #37

Workflow file for this run

name: LiteWeight CI
on:
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Create Local Properties
run: echo '${{ secrets.LOCAL_PROPERTIES }}' > ./local.properties
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: bash ./gradlew assembleDebug --stacktrace
- name: 테스트용 Debug APK artifact 업로드
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk