Update LICENSE #137
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 Bond APK | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Flutter (Android) | |
# needs: [flutter_test] | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ndole/bond_app/ | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
- uses: subosito/[email protected] | |
with: | |
channel: "stable" | |
- run: flutter pub get | |
- run: flutter pub outdated | |
- run: flutter pub upgrade | |
- run: flutter build apk --release |