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: |