Merge pull request 'adjust path' (#31) from fix/frontend/ci-adjustments into main
Some checks failed
Build and deploy the backend to production / Deploy to production (push) Has been cancelled
Build and deploy the backend to production / Build and push image (push) Has been cancelled
/ push-to-remote (push) Failing after 11s

Reviewed-on: #31
This commit is contained in:
Remy Moll 2024-10-22 13:52:32 +00:00
commit 48555e7429

View File

@ -21,10 +21,10 @@ platform :android do
track: 'alpha',
skip_upload_apk: true,
skip_upload_changelogs: true,
aab: "../../build/app/outputs/bundle/release/app-release.aab",
aab: "../build/app/outputs/bundle/release/app-release.aab",
# this is the default output of flutter build ... --release
# in particular this the build folder lies in the flutter root folder
# hence the relative path
# this is the parent folder for the android folder
)
end
@ -41,10 +41,10 @@ platform :android do
track: "production",
skip_upload_apk: true,
skip_upload_changelogs: true,
aab: "../../build/app/outputs/bundle/release/app-release.aab",
aab: "../build/app/outputs/bundle/release/app-release.aab",
# this is the default output of flutter build ... --release
# in particular this the build folder lies in the flutter root folder
# hence the relative path
# this is the parent folder for the android folder
)
end
end