Skip to content

Commit

Permalink
Fetch full history for vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzap committed Mar 28, 2023
1 parent 9a75e8d commit 02ec40b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down Expand Up @@ -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' }}
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 02ec40b

Please sign in to comment.