From 754df9beca21c4841814ff9770dc925eb149e75c Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Tue, 10 Feb 2026 14:32:39 -0500 Subject: [PATCH] fix: revert VERSION extraction to handle simple v-prefixed tags The `##*/v` pattern requires a `/` before `v` to match, so it doesn't strip the `v` from simple `v6.1.0` tags. Now that tags use `v6.1.0` format, the original `#v` pattern is correct. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56301d88..d054fb12 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,6 @@ jobs: - name: Publish to RubyGems run: | - VERSION="${GITHUB_REF_NAME##*/v}" + VERSION="${GITHUB_REF_NAME#v}" bundle exec rake build gem push pkg/workos-${VERSION}.gem --host https://rubygems.org