6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 3bbd70f0

AuthorMikkel Thygesen<mth@dwarf.dk>
Date2025-06-19 14:57:14 +0200
1948: updated pipelines

Changed files

azure/ios-staging.yml             | 15 +++++++++++++++
 azure/templates/build-android.yml |  2 +-
 azure/templates/env-vars.yml      |  7 +++++++
 3 files changed, 23 insertions(+), 1 deletion(-)

Diff

diff --git a/azure/ios-staging.yml b/azure/ios-staging.yml
new file mode 100644
index 00000000..397d5d30
--- /dev/null
+++ b/azure/ios-staging.yml
@@ -0,0 +1,15 @@
+trigger:
+- staging
+
+pool:
+ vmImage: ubuntu-latest
+
+variables:
+ - template: templates/env-vars.yml
+ parameters:
+ env: staging
+
+steps:
+- template: templates/build-ios.yml
+ parameters:
+ env: staging
diff --git a/azure/templates/build-android.yml b/azure/templates/build-android.yml
index dcca8c4a..b2edca90 100644
--- a/azure/templates/build-android.yml
+++ b/azure/templates/build-android.yml
@@ -62,5 +62,5 @@ steps:
action: 'SingleBundle'
bundleFile: '$(Build.SourcesDirectory)/comwell_key_app/build/app/outputs/bundle/$(androidAABPath)'
track: 'internal'
- releaseName: 'test connection'
+ releaseName: 'Release'
isDraftRelease: true
diff --git a/azure/templates/env-vars.yml b/azure/templates/env-vars.yml
index 0c792131..6e1efc48 100644
--- a/azure/templates/env-vars.yml
+++ b/azure/templates/env-vars.yml
@@ -26,6 +26,13 @@ variables:
${{ if eq(parameters.env, 'develop') }}:
value: 'develop'
# iOS
+ - name: iosBundleId
+ ${{ if eq(parameters.env, 'production') }}:
+ value: 'com.comwell.phoenix'
+ ${{ if eq(parameters.env, 'staging') }}:
+ value: 'com.comwell.phoenix.stage'
+ ${{ if eq(parameters.env, 'develop') }}:
+ value: 'com.comwell.phoenix.test'
- name: iosProvisionProfileFileName
${{ if eq(parameters.env, 'production') }}:
value: 'CP_Prod.mobileprovision'