diff --git a/.github/workflows/build_apk.yml b/.github/workflows/build_apk.yml new file mode 100644 index 0000000000..a28fa0b383 --- /dev/null +++ b/.github/workflows/build_apk.yml @@ -0,0 +1,32 @@ +name: Build APK Android + +on: + workflow_dispatch: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./mobile + steps: + - uses: actions/checkout@v2 + + # Build + - uses: subosito/flutter-action@v2 + with: + channel: "stable" + cache: true + cache-key: flutter2.10 # optional, change this to force refresh cache + - run: flutter --version + - run: flutter pub get + - run: flutter build apk + - run: flutter build appbundle + + # Upload Artifact + - uses: actions/upload-artifact@v2 + with: + name: release-apk + path: mobile/build/app/outputs/apk/release/app-release.apk diff --git a/mobile/ios/fastlane/report.xml b/mobile/ios/fastlane/report.xml index 973f9c9c14..a8fe3f2bcb 100644 --- a/mobile/ios/fastlane/report.xml +++ b/mobile/ios/fastlane/report.xml @@ -5,17 +5,14 @@ - + - + - - - - +