mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-19 21:05:25 +08:00
20 lines
462 B
YAML
20 lines
462 B
YAML
name: Debug build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- run: ./gradlew assembleDebug
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: PCAPdroid build ${{github.sha}}
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|
|
retention-days: 7 |