From 534c57350db6f6aaa9531ac53728607417015b17 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 6 Nov 2020 18:05:34 +0100 Subject: [PATCH] Bugfix --- .github/workflows/tag-and.release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag-and.release.yml b/.github/workflows/tag-and.release.yml index fd17674..fae5433 100644 --- a/.github/workflows/tag-and.release.yml +++ b/.github/workflows/tag-and.release.yml @@ -92,7 +92,7 @@ jobs: if: github.event_name == 'create' && github.event.ref_type == 'tag' run: | VERSIONTAG_THIS="${GITHUB_REF#refs/tags/}" - if "$VERSIONTAG_THIS" = "$VERSIONTAG_LAST"; then + if test "$VERSIONTAG_THIS" = "$VERSIONTAG_LAST"; then if printf '%s' "$VERSIONTAG_THIS" | grep -Eq '^[0-9]+\.[0-9]+\.[0-9]+$'; then printf 'Tag %s is version-like\n' "$VERSIONTAG_THIS" else