draw bottom sheet scrim behind the system bars #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build APK | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
cache: 'gradle' | |
- name: chmod gradlew | |
run: chmod +x gradlew | |
- name: Build the APK | |
run: ./gradlew assembleDebug | |
- name: Upload the APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: mauth | |
path: app/build/outputs/apk/debug/app-debug.apk |