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