also upload aab #29

Merged
remoll merged 1 commits from fix/frontend/fastlane-config into main 2024-10-22 12:51:23 +00:00

View File

@ -21,6 +21,8 @@ platform :android do
track: 'alpha', track: 'alpha',
skip_upload_apk: true, skip_upload_apk: true,
skip_upload_changelogs: 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
@ -37,6 +39,8 @@ platform :android do
track: "production", track: "production",
skip_upload_apk: true, skip_upload_apk: true,
skip_upload_changelogs: 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
end end