ci: Fix Windows build and support publishing to an existing release#6621
Open
incrypto32 wants to merge 2 commits into
Open
ci: Fix Windows build and support publishing to an existing release#6621incrypto32 wants to merge 2 commits into
incrypto32 wants to merge 2 commits into
Conversation
anstream 0.6.14 declares `impl WinconStream for &'_ mut Buffer` on Windows, which now conflicts with the blanket `impl<T: WinconStream> WinconStream for &mut T` added in anstyle-wincon 3.0.11. The collision breaks Windows builds with E0119. Bumping to the semver-compatible 0.6.21 drops the explicit impl and resolves the conflict.
Adds a release_tag workflow_dispatch input. When set, the release, publish-npm and publish-npm-wrapper jobs target the given tag instead of github.ref_name, so a rebuilt artifact set can be attached to an existing GitHub release and published to npm without cutting a new tag.
lutter
approved these changes
Jun 9, 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.
Two changes:
release_tagworkflow_dispatch input. When set, the release, publish-npm and publish-npm-wrapper jobs target that tag instead ofgithub.ref_name, so binaries can be attached to an existing release and published as that version. Tag-ref dispatch behaves as before when the input is empty.