From f0d533001af8f5012f34b1b26802d4cbc401a2c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCsters?= Date: Wed, 19 Nov 2025 17:26:19 +0100 Subject: [PATCH] fix: fixed release workflow --- .github/workflows/release.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a41fc57..c2e213d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,19 +24,22 @@ jobs: contents: "write" packages: "write" steps: + - name: Clone repository + uses: actions/checkout@v5 + with: + fetch-depth: 0 + - name: Get version for next release uses: wemogy/get-release-version-action@v4.3.2 id: release-version if: ${{ github.event.inputs.version == '' }} with: prefix: v - create-tag: 'true' + create-tag: "true" git-username: wemogy IT git-email: it@wemogy.com mode: semantic - - uses: actions/checkout@v2 - # Nuget - name: Build .NET uses: ./.github/actions/dotnet