diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e13aa65..3465728 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,9 @@ name: Generate Production AAB on: + push: + branches: + - main release: types: - published @@ -51,4 +54,10 @@ jobs: echo "keyAlias=${{ secrets.PROD_KEYSTORE_ALIAS }}" >> android/key.properties - name: ⚙️ Build AAB - run: flutter build appbundle --flavor production --target lib/main_production.dart -vv \ No newline at end of file + run: flutter build appbundle --flavor production --target lib/main_production.dart -vv + + - name: 📦 Upload AAB + uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: build/app/outputs/bundle/productionRelease/app-production-release.aab diff --git a/pubspec.yaml b/pubspec.yaml index 9ff1347..7b09498 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: fluttercon description: "A new Flutter project." publish_to: 'none' -version: 1.12.06+11206 +version: 1.12.07+11207 environment: sdk: '>=3.5.0 <4.0.0'