Merge pull request #174 from Infosys/username-null-fix #21
Workflow file for this run
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 Android Registration-Client | |
on: | |
push: | |
branches: | |
- feature-flutter | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.4' | |
- name: Install Dart SDK | |
run: flutter pub get | |
- name: Flutter clean | |
run: flutter clean | |
- name: Creating Folders for generated source code | |
run: | | |
sh pigeon.sh | |
# - name: Flutter test | |
# run: flutter test | |
- name: Build Android APK | |
run: flutter build apk | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: apk-output | |
path: ./build/app/outputs/flutter-apk/app-release.apk | |
retention-days: 10 |