2021-03-25 15:07:13 +00:00
|
|
|
name: Github debug build
|
2021-03-25 15:05:38 +00:00
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
# push:
|
|
|
|
# branches: [ master ]
|
|
|
|
# pull_request:
|
|
|
|
# branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: set up JDK 1.8
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.8
|
|
|
|
|
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
|
|
|
|
- name: Build Github debug apk
|
|
|
|
run: ./gradlew assembleGithubDebug --stacktrace
|
|
|
|
|
|
|
|
# Create artifact
|
|
|
|
- name: Create apk artifact
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: app
|
|
|
|
path: app/build/outputs/apk/github/debug/app-github-debug.apk
|