Open
Conversation
Cleanup after successful release workflow testing. Changed: Version extraction tries multiple sources: 1. lib/*/version.rb (most common) 2. VERSION file 3. Gemspec evaluation (fallback) Removed: Debug tracing steps no longer needed Removed: Finalize branch checking (no separate finalize step) Co-Authored-By: Claude <noreply@anthropic.com>
33149ea to
bbfbee0
Compare
cseeman
commented
Dec 19, 2025
| id: version | ||
| run: | | ||
| version=$(ls pkg/*.gem | head -1 | sed 's/.*-\([0-9][^-]*\)\.gem/\1/') | ||
| # Try common version file locations |
Contributor
Author
There was a problem hiding this comment.
With the latest workflow changes, this also needs to be updated . Looking at the current workflow, the "Get version being released" step runs BEFORE the "Release gem to RubyGems" step. The rubygems/release-gem@v1 action runs rake release which includes rake build, but that happens AFTER we try to get the version.
So the original pkg/*.gem approach won't work because the gem hasn't been built yet at that point in the workflow.
saturnflyer
approved these changes
Dec 19, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Cleanup after successful release workflow testing.
Changes
Rake.application.options.trace = truefrom Rakefilelib/*/version.rbinstead ofpkg/*.gemContext
The release workflow is now working with Trusted Publishing. The debug tracing was added to diagnose issues and is no longer needed.