From 83afaeb383a9980f1e9d77b03a5f012919adf10b Mon Sep 17 00:00:00 2001 From: Pantotone Date: Tue, 11 Jun 2024 12:33:21 -0300 Subject: [PATCH] fix: git fetching only latest commit --- .github/workflows/build-Linux.yml | 1 + .github/workflows/build-Mac.yml | 1 + .github/workflows/build-Windows.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/build-Linux.yml b/.github/workflows/build-Linux.yml index e5578c0..9da100c 100644 --- a/.github/workflows/build-Linux.yml +++ b/.github/workflows/build-Linux.yml @@ -118,6 +118,7 @@ jobs: repository: ${{ env.gameRepositoryAuthor }}/${{ env.gameRepositoryName }} ref: ${{ env.gameRepositoryBranch }} submodules: recursive + fetch-depth: 0 - name: "[Pre-install] Pull latest submodules" run: git submodule update diff --git a/.github/workflows/build-Mac.yml b/.github/workflows/build-Mac.yml index d409689..c2492f8 100644 --- a/.github/workflows/build-Mac.yml +++ b/.github/workflows/build-Mac.yml @@ -85,6 +85,7 @@ jobs: repository: ${{ env.gameRepositoryAuthor }}/${{ env.gameRepositoryName }} ref: ${{ env.gameRepositoryBranch }} submodules: recursive + fetch-depth: 0 - name: "[Pre-install] Pull latest submodules" run: git submodule update diff --git a/.github/workflows/build-Windows.yml b/.github/workflows/build-Windows.yml index 3f018f2..694ce8d 100644 --- a/.github/workflows/build-Windows.yml +++ b/.github/workflows/build-Windows.yml @@ -112,6 +112,7 @@ jobs: repository: ${{ env.gameRepositoryAuthor }}/${{ env.gameRepositoryName }} ref: ${{ env.gameRepositoryBranch }} submodules: recursive + fetch-depth: 0 - name: "[Pre-install] Pull latest submodules" run: git submodule update