Compare commits

...

2 Commits

Author SHA1 Message Date
e6ccb7078b 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
2024-10-22 12:51:22 +00:00
84839c5a02 also upload aab
Some checks failed
Build and release APK / Build APK (pull_request) Has been cancelled
2024-10-22 14:50:59 +02:00

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