You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
659 B
26 lines
659 B
name: Continuous develop build |
|
on: |
|
push: |
|
branches: |
|
- develop |
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
with: |
|
fetch-depth: 0 |
|
- name: set up JDK 1.8 |
|
uses: actions/setup-java@v1 |
|
with: |
|
java-version: 1.8 |
|
- name: Build with Gradle |
|
run: | |
|
mkdir -p /home/runner/.android && touch /home/runner/.android/repositories.cfg |
|
./gradlew assembleDebug |
|
- name: Create release |
|
uses: eine/tip@gha-tip |
|
with: |
|
token: ${{ secrets.GITHUB_TOKEN }} |
|
cwd: ${{ github.workspace }} |
|
files: app/build/outputs/apk/debug/app-debug.apk
|
|
|