From 9f9ce8af488308dc72be203d96e6f379ddfda956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Garc=C3=AAs?= Date: Sat, 18 Sep 2021 17:16:29 +0100 Subject: [PATCH] ci: remove 'v' from semantic versioning tags --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51d6218d..7528361e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,13 +77,13 @@ jobs: if [[ $LAST_COMMIT_MESSAGE =~ ^major:.*$ ]]; then echo "Bumping to next major version." - NEXT_VERSION="v$MAJOR" + NEXT_VERSION="$MAJOR" elif [[ $LAST_COMMIT_MESSAGE =~ ^feat:.*$ ]]; then echo "Bumping to next minor version." - NEXT_VERSION="v$MINOR" + NEXT_VERSION="$MINOR" elif [[ $LAST_COMMIT_MESSAGE =~ ^(fix|ci|refactor|chore):.*$ ]]; then echo "Bumping to next patch version." - NEXT_VERSION="v$PATCH" + NEXT_VERSION="$PATCH" else echo "Skipping version bump." NEXT_VERSION="$CURRENT"