From a33f494ca2395ae010e1d9ebdf00905f2f071688 Mon Sep 17 00:00:00 2001 From: Damilola Alimi Date: Wed, 19 Nov 2025 13:05:47 +0100 Subject: [PATCH] Add to docs solution to FVM Configuration File Not Found in Monorepos --- content/yaml-quick-start/building-a-flutter-app.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/yaml-quick-start/building-a-flutter-app.md b/content/yaml-quick-start/building-a-flutter-app.md index b3b18b50..50da9d29 100644 --- a/content/yaml-quick-start/building-a-flutter-app.md +++ b/content/yaml-quick-start/building-a-flutter-app.md @@ -82,6 +82,16 @@ ln -s $FLUTTER_ROOT $CM_BUILD_DIR/.fvm/flutter_sdk {{}} +{{}} +**Note**: For monorepo projects, where the FVM configuration file is often located inside a subdirectory. Instead of setting **flutter: fvm** in the workflow's environment section, install and configure FVM manually in the relevant app directory: +``` +scripts: + - brew tap leoafarias/fvm && brew install fvm + - fvm install && fvm use +``` + +{{}} + {{}} {{< /tab >}}