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

AuthorMikkel Thygesen<mikkelet@gmail.com>
Date2026-03-09 15:02:05 +0100
Devops: added github action

Changed files

.github/workflows/build-ios-stage.yml | 11 +++++++++--
 azure/templates/build-ios.yml         |  1 -
 azure/templates/install-flutter.yml   |  1 -
 3 files changed, 9 insertions(+), 4 deletions(-)

Diff

diff --git a/.github/workflows/build-ios-stage.yml b/.github/workflows/build-ios-stage.yml
index b57bd53b..fd7b76d1 100644
--- a/.github/workflows/build-ios-stage.yml
+++ b/.github/workflows/build-ios-stage.yml
@@ -60,7 +60,8 @@ jobs:
env:
DOTENV_FILE: ${{ secrets.DOTENV_STAGE }}
run: |
- mkdir comwell_key_app/env
+ cd comwell_key_app
+ mkdir env
DOTENV_PATH=comwell_key_app/env/.stage.env
echo "$DOTENV_FILE" | base64 -d > $DOTENV_PATH
@@ -73,7 +74,7 @@ jobs:
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $offsetBuildNumber" "ios/Runner/Info.plist"
echo "Updated build number in ios/Runner/Info.plist to $offsetBuildNumber"
- - name: "Enabled SPM"
+ - name: Enabled SPM
run: flutter config --enable-swift-package-manager
- name: Flutterfire
@@ -86,6 +87,12 @@ jobs:
cd mobilekeys_sdk_plugin
sh pigeon.sh
+ - name: Update Pods
+ run: |
+ cd comwell_key_app/ios
+ pod repo remove trunk
+ pod install
+
- name: flutter build ipa
env:
FLAVOR: stage
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 167d7f27..5d507875 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -52,7 +52,6 @@ steps:
echo "Updated build number in ios/Runner/Info.plist to $offsetBuildNumber"
displayName: "Update build number"
-
- script: |
cd comwell_key_app
flutter build ipa --flavor $(flavor) --release --no-codesign
diff --git a/azure/templates/install-flutter.yml b/azure/templates/install-flutter.yml
index 4a73703a..385c03b5 100644
--- a/azure/templates/install-flutter.yml
+++ b/azure/templates/install-flutter.yml
@@ -11,7 +11,6 @@ steps:
flutter doctor -v
displayName: "Run Flutter diagnostics"
-
- task: FlutterAnalyzeTask@0
inputs:
projectDirectory: '$(Build.SourcesDirectory)/comwell_key_app'