From c2d1b19846eb609ed377ef8fa7d7f86262bcf765 Mon Sep 17 00:00:00 2001 From: Justin Alvarez Date: Fri, 18 Oct 2024 15:24:11 +0000 Subject: [PATCH] echo version to help with debug Signed-off-by: Justin Alvarez --- .github/workflows/ci-release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-release.yaml b/.github/workflows/ci-release.yaml index aaf7e903d..a691b75ca 100644 --- a/.github/workflows/ci-release.yaml +++ b/.github/workflows/ci-release.yaml @@ -185,17 +185,19 @@ jobs: ignore: 'CHANGELOG.md' get-intermediate-version: - name: Create intermediate version + name: Get intermediate version runs-on: ubuntu-latest outputs: version: ${{ steps.get-intermediate-version.version }} steps: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - - name: Creates an intermediate version + - name: Gets an intermediate version string id: calculate-version run: | version=$(git describe --match 'v[0-9]*' --dirty='.modified' --always --tags) + echo "${version}" version="${version}-no-release" + echo "${version}" echo "version=$version" >> ${GITHUB_OUTPUT} release-linux: