Move UI models into data-shared #88
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: | |
branches: [ "main" ] | |
jobs: | |
Gradle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: setup jdk | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Make Gradle executable | |
run: chmod +x ./gradlew | |
- name: Bump version | |
uses: chkfung/[email protected] | |
with: | |
gradlePath: app/build.gradle # or app/build.gradle.kts | |
versionCode: ${{github.run_number}} | |
- name: Build Release APK | |
run: ./gradlew assembleDebug | |
- name: Releasing using Hub | |
uses: sangatdesai/release-apk@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
APP_FOLDER: app |