From 742c9da9b4df20b2263c62bbbdb320561242d8b3 Mon Sep 17 00:00:00 2001 From: "D. Moonfire" Date: Sun, 10 Mar 2024 13:22:44 -0500 Subject: [PATCH] build: removing uneeded tools --- .config/dotnet-tools.json | 4 ---- .gitea/workflows/deploy.yaml | 2 +- Justfile | 1 + 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 3395089..4217f79 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -2,10 +2,6 @@ "version": 1, "isRoot": true, "tools": { - "gitversion.tool": { - "version": "5.12.0", - "commands": ["dotnet-gitversion"] - }, "dotnet-reportgenerator-globaltool": { "version": "5.1.24", "commands": ["reportgenerator"] diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index b2ba552..da13156 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -21,7 +21,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 with: - fetch-depth: 0 # GitVersion has trouble calculating without full history. + fetch-depth: 100 # Should be deep enough to pick up version changes. # Break apart downloading all the requirements into a separate step for timing purposes. - run: nix develop --command echo prefetch flake diff --git a/Justfile b/Justfile index 4ba9c86..b20b0cd 100644 --- a/Justfile +++ b/Justfile @@ -78,6 +78,7 @@ release-setup: restore-tools restore-packages fi # Sets the version for all the packages based on conventional commits + # and semantic releases. release-version: #!/usr/bin/env bash