File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -134,13 +134,22 @@ jobs:
134134 flutter pub get
135135 dart scripts/version_sync.dart
136136 flutter build apk -t lib/main.firebase.dart --release
137+ flutter build appbundle -t lib/main.firebase.dart --release
137138
138139 - name : Create Android Release
139140 uses : ncipollo/release-action@v1
140141 with :
141- artifacts : " app/build/app/outputs/apk/release/app-release.apk"
142+ artifacts : " app/build/app/outputs/apk/release/app-release.apk,app/build/app/outputs/bundle/release/app-release.aab "
142143 token : ${{ secrets.TOKEN }}
143144 allowUpdates : true
145+ - uses : actions/upload-artifact@v4
146+ with :
147+ name : " app-release.apk"
148+ path : " app/build/app/outputs/bundle/release/app-release.aab"
149+ - uses : actions/upload-artifact@v4
150+ with :
151+ name : " app-release.apk"
152+ path : " app/build/app/outputs/apk/release/app-release.apk"
144153
145154 macos :
146155 name : MacOS
You can’t perform that action at this time.
0 commit comments