mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-06 02:35:19 +08:00
19 lines
371 B
YAML
19 lines
371 B
YAML
name: 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
|