From e1bab22a4d57ac1c4db4fedc0bbd1c37c1a59787 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 12 Apr 2025 19:44:54 -0400 Subject: [PATCH] Workaround for https://github.com/actions/checkout/issues/1471 --- .github/workflows/nix-deployment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix-deployment.yml b/.github/workflows/nix-deployment.yml index f998f7e9db..f46272cceb 100644 --- a/.github/workflows/nix-deployment.yml +++ b/.github/workflows/nix-deployment.yml @@ -32,7 +32,8 @@ jobs: with: token: ${{ steps.app-token-generation.outputs.token }} ref: master - fetch-tags: true + fetch-depth: 0 + # fetch-tags: true Doesn't work, see https://github.com/actions/checkout/issues/1471 - name: Parse TGS version run: echo "TGS_VERSION=$(xmlstarlet sel -N X="http://schemas.microsoft.com/developer/msbuild/2003" --template --value-of /X:Project/X:PropertyGroup/X:TgsCoreVersion build/Version.props)" >> $GITHUB_ENV