Merge pull request 'also upload aab' (#29) from fix/frontend/fastlane-config into main
Some checks are pending
Build and deploy the backend to production / Deploy to production (push) Blocked by required conditions
Build and deploy the backend to production / Build and push image (push) Waiting to run
/ push-to-remote (push) Successful in 12s

Reviewed-on: #29
This commit is contained in:
Remy Moll 2024-10-22 12:51:22 +00:00
commit e6ccb7078b

View File

@ -21,6 +21,8 @@ platform :android do
track: 'alpha',
skip_upload_apk: true,
skip_upload_changelogs: true,
aab: "build/app/outputs/bundle/release/app-release.aab",
# this is the default output of flutter build ... --release (in particular it is relative)
)
end
@ -37,6 +39,8 @@ platform :android do
track: "production",
skip_upload_apk: true,
skip_upload_changelogs: true,
aab: "build/app/outputs/bundle/release/app-release.aab",
# this is the default output of flutter build ... --release (in particular it is relative)
)
end
end