From 02ec40b7ba0440538e2e9721d9922c292c9b9e8f Mon Sep 17 00:00:00 2001 From: Exzap <13877693+Exzap@users.noreply.github.com> Date: Tue, 28 Mar 2023 18:29:30 +0200 Subject: [PATCH] Fetch full history for vcpkg --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef1de2d8..31a76cfe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,13 @@ jobs: uses: actions/checkout@v3 with: submodules: "recursive" + fetch-depth: 0 + + - name: "Fetch full history for vcpkg submodule" + run: | + cd dependencies/vcpkg + git fetch --unshallow + git pull --all - name: Setup release mode parameters (for deploy) if: ${{ inputs.deploymode == 'release' }} @@ -118,6 +125,12 @@ jobs: uses: actions/checkout@v3 with: submodules: "recursive" + + - name: "Fetch full history for vcpkg submodule" + run: | + cd dependencies/vcpkg + git fetch --unshallow + git pull --all - name: Setup release mode parameters (for deploy) if: ${{ inputs.deploymode == 'release' }} @@ -187,6 +200,13 @@ jobs: uses: actions/checkout@v3 with: submodules: "recursive" + + - name: "Fetch full history for vcpkg submodule" + run: | + cd dependencies/vcpkg + git fetch --unshallow + git pull --all + - name: Setup release mode parameters (for deploy) if: ${{ inputs.deploymode == 'release' }} run: |