From c36c40b678256e6886f743b8f311dc142889e14b Mon Sep 17 00:00:00 2001 From: "Jingjing Jia (from Dev Box)" Date: Thu, 7 May 2026 16:37:35 -0700 Subject: [PATCH] fix: route npm install through Azure Artifacts feed in release pipeline The 1ESPT CFSClean network isolation policy now enforces on Linux agents, blocking direct access to registry.npmjs.org. Use the Npm@1 task's built-in customRegistry/customFeed support to route through the msgraph-typescript Azure Artifacts feed (with npmjs upstream) instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .azure-pipelines/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure-pipelines/release.yml b/.azure-pipelines/release.yml index 064ef4c85ed..ef441a74772 100644 --- a/.azure-pipelines/release.yml +++ b/.azure-pipelines/release.yml @@ -53,6 +53,8 @@ extends: inputs: command: 'ci' verbose: true + customRegistry: 'useFeed' + customFeed: 'Graph Developer Experiences/msgraph-typescript' displayName: 'Install npm dependencies with retry' - script: npm run build