barinsta/.github/workflows/github_debug_apk.yml

35 lines
721 B
YAML

name: Github debug build
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@v2
with:
name: app
path: app/build/outputs/apk/github/debug/app-github-debug.apk