From e26e8ab8822f70892c6a14be7b241fe6c50d5910 Mon Sep 17 00:00:00 2001 From: Shane Mulcahy Date: Fri, 21 Nov 2025 23:40:49 -0500 Subject: [PATCH] Add recursive submodule pull to workflows. --- .github/workflows/nightly.yml | 6 ++++++ .github/workflows/release.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9678d44..8d060dd 100755 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -22,6 +22,9 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 - name: Log in to GitHub Container Registry run: | @@ -77,6 +80,9 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 - name: Set up MSVC Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 860ffb6..17f52ce 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,9 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 - name: Log in to GitHub Container Registry run: | @@ -75,6 +78,9 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 # Set up the Visual C++ build environment (nmake, cl, etc.) - name: Set up MSVC Developer Command Prompt