From 5c634800bad1945f908d3b5bcd2d81ff2a79fb16 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Thu, 12 Dec 2024 13:46:42 +0400 Subject: [PATCH] Hotfix for publishing workflow --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 16510ac..7b25e2d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -41,7 +41,7 @@ jobs: run: | TAG_VERSION=$(echo "${{ github.ref_name }}" \ | grep -P "^v\d+.\d+.\d+(\-\w+(.\w)*)?$" \ - | grep --color=never -Po "\d+.\d+.\d+(\-\w+(.\w)*)?$" + | grep --color=never -Po "\d+.\d+.\d+(\-\w+(.\w)*)?$") if [[ -z $TAG_VERSION ]]; then echo "Ref is not a release tag." echo "To create release, use tag names like 'v1.2.3' or 'v1.2.3-pre.4'."