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

AuthorMikkel Thygesen<mth@dwarf.dk>
Date2025-06-24 10:33:09 +0200
1948: updated pipelines

Changed files

azure/templates/build-ios.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Diff

diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 9ae5567f..6c88783a 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -69,21 +69,21 @@ steps:
targetType: 'inline'
script: |
xcodebuild -version
- cd "$(Build.SourcesDirectory)/comwell_key_app"
- flutter build ios --no-codesign --flavor=stage
+ cd "$(Build.SourcesDirectory)/comwell_key_app"
+ flutter build ios --no-codesign --flavor=$(flavor)
# Ensure the custom XCFramework is added to the Xcode project
- task: Xcode@5
displayName: "Archive app"
inputs:
- actions: "archive"
+ actions: "build"
scheme: "$(iosScheme)" # Make sure to use the correct scheme that includes the custom XCFramework
configuration: "$(iosConfiguration)"
sdk: "iphoneos"
xcWorkspacePath: "$(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcworkspace"
xcodeVersion: "specifyPath"
xcodeDeveloperDir: '/Applications/Xcode_16.2.app/Contents/Developer'
- packageApp: true
+ exportPath: 'output'
teamId: '8RNV6AX4ZL'
signingOption: "manual"
signingIdentity: "$(APPLE_CERTIFICATE_SIGNING_IDENTITY)"