6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit d2012810

AuthorMikkel Thygesen<mth@dwarf.dk>
Date2025-06-23 10:34:42 +0200
1948: updated pipelines

Changed files

azure/templates/build-ios.yml | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

Diff

diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 24e7a42b..cfc9ee3d 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -42,14 +42,13 @@ steps:
script: |
flutter config --enable-swift-package-manager
-- task: FlutterBuild@0
- displayName: "Build application"
+- task: Bash@3
+ displayName: "Build app"
inputs:
- buildNumber: "$(Build.BuildId)"
- target: "ios"
- buildFlavour: $(flavor)
- iosCodesign: false
- projectDirectory: "$(Build.SourcesDirectory)/comwell_key_app"
+ targetType: 'inline'
+ script: |
+ cd "$(Build.SourcesDirectory)/comwell_key_app"
+ flutter build ios --no-codesign --flavor=stage
# Ensure the custom XCFramework is added to the Xcode project
- task: Xcode@5