Skip to content

chore: upgrade deps

chore: upgrade deps #1

Workflow file for this run

name: Production Tag workflow
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
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: 'production'
secrets: inherit
release:
needs: [ flutter-build ]
uses: ./.github/workflows/action.release.yaml
with:
is_a_prerelease: false
fastlane:
needs: [ flutter-build ]
uses: ./.github/workflows/action.fastlane.yaml
with:
lane: 'production'
secrets: inherit