From 4f2b79d9b1837fc15cb2245195dfc9bc2ecf2f54 Mon Sep 17 00:00:00 2001 From: Dolly132 <109222243+Dolly132@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:11:24 +0300 Subject: [PATCH] feat(am-build): Add submodules key --- .github/workflows/shared_build_release_am_extension.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shared_build_release_am_extension.yml b/.github/workflows/shared_build_release_am_extension.yml index da1e52b..67f6396 100644 --- a/.github/workflows/shared_build_release_am_extension.yml +++ b/.github/workflows/shared_build_release_am_extension.yml @@ -11,6 +11,11 @@ on: description: "Artifact path to download from previous jobs" default: "" type: string + submodules: + description: "Whether to checkout submodules (true, false, or recursive)" + default: "recursive" + type: string + jobs: build: @@ -32,7 +37,7 @@ jobs: steps: - uses: actions/checkout@v7 with: - submodules: true + submodules: ${{ inputs.submodules }} - name: Download artifact uses: actions/download-artifact@v8