Skip to content

fix(ui): display correctly the build name build name #2

fix(ui): display correctly the build name build name

fix(ui): display correctly the build name build name #2

Workflow file for this run

name: Beta Tag workflow
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-beta'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
flutter-test-analyze:
uses: ./.github/workflows/action.flutter.analyze-test.yaml
with:
flutter_version: '3.19.3'
secrets: inherit
flutter-build:
needs: [ flutter-test-analyze ]
uses: ./.github/workflows/action.flutter.build.yaml
with:
flutter_version: '3.19.3'
android_output: 'aab'
env: 'beta'
secrets: inherit
release:
needs: [ flutter-build ]
uses: ./.github/workflows/action.release.yaml
with:
is_a_prerelease: true
fastlane:
needs: [ flutter-build ]
uses: ./.github/workflows/action.fastlane.yaml
with:
lane: 'beta'
secrets: inherit