This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Conversation
Greptile OverviewGreptile SummaryThis PR fixes the release automation by enabling release-plz to publish directly to crates.io and creates tags/releases that trigger downstream workflows. Key changes:
Note: Both Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant PR as Release PR
participant RTW as release-tag.yml
participant RW as release.yml
participant RP as release-plz
participant Crates as crates.io
participant GH as GitHub Releases
participant HB as Homebrew
Dev->>PR: Merge PR with 'release' label
par Parallel Workflows
PR->>RTW: Trigger workflow
PR->>RW: Trigger workflow
end
RTW->>RP: Run release-plz release
RP->>Crates: Publish to crates.io
RP->>GH: Create git tag
RP->>GH: Create GitHub release
RW->>RW: Build binaries (8 targets)
RW->>RW: Sign & notarize macOS binaries
RW->>GH: Create/update release with tag_name
GH-->>RW: Tag exists or created
RW->>GH: Upload binary artifacts
RW->>HB: Update homebrew formula
|
8021da8 to
b1cb4c8
Compare
- Pass CARGO_REGISTRY_TOKEN to release-plz for crates.io publishing - Trigger release.yml on PR merge instead of tag push - Explicitly enable git tagging and releases in release-plz config GITHUB_TOKEN-created tags don't trigger other workflows, so we now trigger on release PR merge directly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
b1cb4c8 to
2008418
Compare
Merged
shikhar
pushed a commit
that referenced
this pull request
Jan 27, 2026
## 🤖 New release * `s2-cli`: 0.25.1 -> 0.25.2 <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.25.2] - 2026-01-27 ### Bug Fixes - Add `S2_SSL_NO_VERIFY` config ([#210](#210)) ### Miscellaneous Tasks - Release cmd - Automate releases with release-plz - Add dependabot for weekly dependency updates ([#208](#208)) - Consolidate release workflows ([#211](#211)) <!-- generated by git-cliff --> </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
release-tag.ymlintorelease.ymlfor a single release workflowrelease_plzjob to handle: git tag, crates.io publish, GitHub release with changeloggit_tag_enableandgit_release_enablein release-plz configFlow
release.ymlruns:release_plz: tag + crates.io + GitHub releasebuild_binaries: cross-platform builds + signingupload_release_artifacts: attach binaries to releaseupdate_homebrew: update formula🤖 Generated with Claude Code