devops(pipeline): resolve Maven and npm packages from DevDiv_PublicPackages feed - #1971
Merged
Yury Semikhatsky (yury-s) merged 3 commits intoSep 3, 2026
Merged
Conversation
…ckages feed Route all package downloads in the release pipeline through the DevDiv_PublicPackages Azure Artifacts feed, as required by SFI-ES4.2.4: - Maven: a pipeline-only settings.xml mirrors central to the feed and MavenAuthenticate@0 supplies credentials. The published poms and public CI keep using Maven Central. - npm: the pipeline writes .npmrc pointing at the feed and runs npmAuthenticate@0. download_driver.sh now runs npm from the repository root and uses `npm pack` instead of a hard-coded registry.npmjs.org URL, so the configured registry is used for both the gitHead lookup and the playwright-core tarball. - Skip the release-branch check on manual runs and gate the ESRP publish job on v1.* tags so the feed setup can be exercised by hand.
Pavel Feldman (pavelfeldman)
approved these changes
Sep 3, 2026
… directly The upstream driver build script that pinned NODE_VERSION was removed in microsoft/playwright#41518, so the gitHead lookup only ever led to a 404 and the LTS fallback. The gitHead field is also not available from the internal npm feed, which failed the release pipeline.
download_driver.sh needs node and npm on the agent.
Yury Semikhatsky (yury-s)
merged commit Sep 3, 2026
391cb63
into
microsoft:main
20 of 21 checks passed
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
DevDiv_PublicPackagesAzure Artifacts feed (SFI-ES4.2.4) instead of Maven Central / npmjs.com.settings.xml;pom.xmland public CI are unchanged.download_driver.shusesnpm packand honours the configured registry instead of a hard-coded npmjs.org URL.