Skip to content

Remove beta settings (#361) #37

Remove beta settings (#361)

Remove beta settings (#361) #37

Workflow file for this run

name: Dist / Android / Closed
on:
push:
# Every branch that starts with "beta"
branches:
- beta*
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: self-hosted
container: cirrusci/flutter:3.7.3
steps:
- uses: actions/checkout@v2
- name: Run unit tests
run: |
flutter pub get
flutter test
distribute:
runs-on: self-hosted
needs: test
container: cirrusci/flutter:3.7.3
steps:
- uses: actions/checkout@v2
- name: Build the Android app bundle
run: |
flutter pub get
flutter build appbundle
- name: Install Fastlane
run: |
gem install fastlane
- name: Distribute via Fastlane to Closed and Open Track
run: |
cd android
fastlane open