Created
August 29, 2020 10:58
-
-
Save urmilshroff/0eb7d59daf0e8a3b13484c3c5a57a8b2 to your computer and use it in GitHub Desktop.
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build for Android | |
runs-on: macos-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v1 | |
- name: Build debug APK | |
run: flutter build apk --debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment