From cf29c40b439f0493531ed7afe880ebfec2d9991f Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 22 Mar 2024 17:54:23 +0000 Subject: [PATCH] Fix `v` tag_name prefix sneaking into npm version --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 05e5be7a..5366d36b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,7 @@ jobs: run: "yarn install --frozen-lockfile" - name: 🎖 Bump package.json version - run: "yarn version --new-version $VERSION" + run: "yarn version --new-version ${VERSION#v}" env: VERSION: ${{ github.event.release.tag_name }}.0