From 792ec6a558891cd030de727b1eaecbac4e9ae0d9 Mon Sep 17 00:00:00 2001 From: Sergei Blinov Date: Mon, 9 Sep 2024 01:48:31 +0200 Subject: [PATCH] debug ci --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7e73f33..13f885d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,6 +21,7 @@ jobs: id: get_version run: | # Get the latest tag, filter to versions with "v" prefix, sort them by version, and take the latest + git fetch --tags git describe --tags --match "v[0-9]*" --abbrev=0 VERSION=$(git describe --tags --match "v[0-9]*" --abbrev=0 2>/dev/null || echo "v0.0.0") echo "Current version: $VERSION"