From 3c4f75b6c69677df3fd6aad03eb006fe026dbc96 Mon Sep 17 00:00:00 2001 From: Marco Rossi Date: Wed, 13 Mar 2024 17:36:46 +0100 Subject: [PATCH] fix: added missing env --- .github/workflows/build-ios-app.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-ios-app.yml b/.github/workflows/build-ios-app.yml index 14e1ad8..3656277 100644 --- a/.github/workflows/build-ios-app.yml +++ b/.github/workflows/build-ios-app.yml @@ -3,6 +3,9 @@ name: Build iOS app on: workflow_call: inputs: + FLUTTER_VERSION: + required: true + type: string IOS_KEY_ID: required: true type: string @@ -31,11 +34,12 @@ on: required: true env: + FLUTTER_VERSION: ${{ inputs.FLUTTER_VERSION }} + FLAVOR: ${{ inputs.FLAVOR }} IOS_KEY_ID: ${{ inputs.IOS_KEY_ID }} IOS_ISSUER_ID: ${{ inputs.IOS_ISSUER_ID }} IOS_APP_IDENTIFIER: ${{ inputs.IOS_APP_IDENTIFIER }} IOS_EXPORT_OPTIONS_PLIST_PATH: ${{ inputs.IOS_EXPORT_OPTIONS_PLIST_PATH }} - FLAVOR: ${{ inputs.FLAVOR }} IOS_BUILD_PATH: build/ios/ipa/dab.ipa jobs: