From d68391a80a3ec05b5ffa346a325b9c1e1a97560b Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Tue, 1 Jul 2025 15:06:08 -0700 Subject: [PATCH] [CI] Fix prerelease version tag not set (#4322) --- .github/workflows/version-bump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-bump.yaml b/.github/workflows/version-bump.yaml index a5629db65..8e5f7042f 100644 --- a/.github/workflows/version-bump.yaml +++ b/.github/workflows/version-bump.yaml @@ -35,7 +35,7 @@ jobs: - name: Bump version id: bump-version run: | - npm version ${{ github.event.inputs.version_type }} --no-git-tag-version + npm version ${{ github.event.inputs.version_type }} --preid ${{ github.event.inputs.pre_release }} --no-git-tag-version NEW_VERSION=$(node -p "require('./package.json').version") echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT