Update dependency cz.adaptech.tesseract4android:tesseract4android to v4.7.0 #894
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: | |
branches: [ "master", "dep/**" ] | |
pull_request: | |
branches: [ "master", "dep/**", "refactor/**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew assembleDevDebug | |
- name: Upload debug APK | |
uses: actions/[email protected] | |
with: | |
name: main-dev-debug.apk | |
path: main/build/outputs/apk/dev/debug/main-dev-debug.apk |