Set up trusted publishing Fixes - #66
Open
dhuebner wants to merge 1 commit into
Open
Conversation
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.
This pull request overhauls the release process documentation and automates publishing for the npm packages. It introduces new GitHub Actions workflows for both "next" and "latest" releases, replaces the old
releasing.mdwith a much more detailed and actionableRELEASING.md, and updates references throughout the documentation to match the new file name. These changes make the release process more robust, transparent, and secure by leveraging npm's staged publishing and trusted publishing via OIDC.Release process automation and documentation:
.github/workflows/publish-next.ymlto automate staging "next" snapshot releases ofvscode-messenger-common,vscode-messenger, andvscode-messenger-webviewto npm under thenexttag, using npm trusted publishing and staged publishing for added security..github/workflows/publish.ymlto automate staging production ("latest") releases of the same packages, triggered by semver tags or manually, also using trusted and staged publishing.releasing.mdwith a new, comprehensiveRELEASING.mdthat provides step-by-step instructions for both manual and CI-based releases, including how to review, approve, or reject staged npm packages, and updated guidance for the devtools extension. [1] [2]NOTE: vs-code extension publishing will be handled separately in follow-up PR when a new extension release is required.
Documentation consistency:
AGENTS.mdfromreleasing.mdtoRELEASING.mdto match the new file name and ensure consistency across documentation. [1] [2]