Add tag-triggered release workflow; loosen faraday dep; bump to 0.5.2 - #87
Open
msxavi wants to merge 1 commit into
Open
Add tag-triggered release workflow; loosen faraday dep; bump to 0.5.2#87msxavi wants to merge 1 commit into
msxavi wants to merge 1 commit into
Conversation
Publishing now only happens through GitHub Actions, using RubyGems OIDC trusted publishing and the Actions GITHUB_TOKEN, so no long-lived credentials are stored. The workflow refuses to publish unless the pushed tag's commit is reachable from develop. See RELEASING.md. Also loosens the faraday dependency from ~> 1.10 to >= 1.10 so consumers aren't held back from newer Faraday releases. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Member
Author
|
@codex review |
|
To use Codex here, create a Codex account and connect to github. |
jbat
approved these changes
Aug 28, 2026
schlick
reviewed
Aug 28, 2026
| # >= 1.10 because the connections use Faraday's own `f.response :json` | ||
| # (Faraday::Response::Json), which only ships from 1.10. | ||
| spec.add_dependency "faraday", "~> 1.10" | ||
| spec.add_dependency "faraday", ">= 1.10" |
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
.github/workflows/release.yml, triggered byvX.Y.Ztag pushes, that publishes the gem to RubyGems.org (via OIDC trusted publishing) and to GitHub Packages (via the ActionsGITHUB_TOKEN) — no long-lived credentials stored anywhere.develop.RELEASING.mddocumenting the release steps for the team and the one-time RubyGems.org Trusted Publisher setup required before the first run.faradaydependency from~> 1.10to>= 1.10so consumers aren't held back from newer Faraday releases.0.5.2and updatesCHANGELOG.md.Mirrors the release workflow added in rdytech/happi#23, adapted for this gem.
Test plan
ruby -ryaml)supersetgem owner configures the RubyGems.org Trusted Publisher forrdytech/superset-client/release.yml(see RELEASING.md)🤖 Generated with Claude Code