From 5d3fa35682ff63d13c2fa4326ece9348527d2f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= Date: Fri, 6 Sep 2024 23:47:12 +0200 Subject: [PATCH] ci: fix version variable set --- .github/workflows/tag-release-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag-release-and-publish.yml b/.github/workflows/tag-release-and-publish.yml index 098131b..0eac2be 100644 --- a/.github/workflows/tag-release-and-publish.yml +++ b/.github/workflows/tag-release-and-publish.yml @@ -51,7 +51,7 @@ jobs: - name: Get the current version id: get_version run: | - VERSION=v$(cat Cargo.toml | grep -m 1 version | grep -o -P "\d+\.\d+\.\d+") + VERSION=$(cat Cargo.toml | grep -m 1 version | grep -o -P "\d+\.\d+\.\d+") echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Get Changelog line