Merged
Conversation
The rubygems/release-gem action requires rake to be in the bundle since it runs `bundle exec rake release`. This was missing, which caused the v5.31.1 publish to RubyGems to fail. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Greptile OverviewGreptile SummaryThis PR adds Changes:
This is a minimal, focused fix that resolves the v5.31.1 release failure and will allow future releases to succeed. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant PR as Pull Request Merge
participant GH as GitHub Actions
participant Bundle as Bundler
participant RG as RubyGems Action
participant Pub as RubyGems.org
PR->>GH: Trigger release workflow
GH->>GH: Create GitHub Release
GH->>Bundle: bundle install
Note over Bundle: rake now included<br/>in development dependencies
Bundle-->>GH: Dependencies installed
GH->>GH: bundle exec rspec (tests)
GH->>GH: gem build workos.gemspec
GH->>RG: rubygems/release-gem@v1
Note over RG: Runs bundle exec rake release<br/>which requires rake to be in bundle
RG->>Pub: Publish gem to RubyGems.org
Pub-->>RG: Success
|
ericroberts
approved these changes
Feb 2, 2026
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
rakeas a development dependency in the gemspecThe
rubygems/release-gem@v1action runsbundle exec rake release, which requires rake to be in the bundle. This was missing, causing the v5.31.1 publish to RubyGems to fail.Test plan
🤖 Generated with Claude Code