Files
termux-app/.github/workflows/debug_build.yml
2020-02-07 13:47:22 +02:00

19 lines
396 B
YAML

name: Termux application debug build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Build
run: |
./gradlew assembleDebug
- name: Store generated APK file
uses: actions/upload-artifact@v1
with:
name: termux-app
path: ./app/build/outputs/apk/debug/app-debug.apk