chore: Android build #169
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: examples | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
example_android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- name: build | |
run: | | |
dart pub global activate melos | |
melos bootstrap | |
cd example && flutter build apk --debug | |
example_ios: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- name: build | |
run: | | |
dart pub global activate melos | |
melos bootstrap | |
cd example && flutter build ios --debug --no-codesign |