From df37f3e03027e862c0d0f0b9acadde0fadbeffcf Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 9 Oct 2025 06:11:00 -0500 Subject: [PATCH] feat(ci): Checkout code in promotion workflow (#3419) --- .github/workflows/promote.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 6edac0c69..5a7ae49bd 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -104,6 +104,12 @@ jobs: runs-on: ubuntu-latest needs: [ prepare-build-info, promote-release ] steps: + - name: Checkout code + uses: actions/checkout@v5 + with: + fetch-depth: 0 + submodules: 'recursive' + - name: Update GitHub Release with gh CLI env: GH_TOKEN: ${{ github.token }}