ci: publish provider binaries in release-plz flow - #178
Merged
Conversation
Build and publish provider archives as downstream jobs of the release-plz workflow, using its release metadata and skipping the jobs when no release is created. Fixes #176
Teakowa
requested changes
Sep 3, 2026
Teakowa
left a comment
Contributor
There was a problem hiding this comment.
Major — .github/workflows/release-plz.yml
releases_created only means release-plz released some package, while releases is an array of all released packages. This workspace has multiple packages, and release-plz returns a tag even when git-tag creation is disabled. Using releases[0].tag can therefore select a non-opy-rs synthesized tag or run the provider flow when no opy-rs GitHub Release was created.
Select the releases entry whose package_name == "opy-rs", gate the provider jobs on that entry existing, and use that entry's tag for checkout/upload.
Resolve the release-plz metadata by package name before gating provider publication, so unrelated package releases cannot trigger provider assets. Refs #176
This was referenced Sep 3, 2026
Merged
Merged
Merged
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
releases_createdoutputreleasesmetadataValidation
actionlint .github/workflows/release-plz.ymlgit diff --checkFixes #176