From a83edad33d9572452918607ac756c494ff422c3a Mon Sep 17 00:00:00 2001 From: ray chen Date: Tue, 7 Apr 2026 23:18:14 +0000 Subject: [PATCH] Added pip auth step for using internal feed --- eng/pipelines/templates/jobs/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 703c81308c01..daaa551da92f 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -198,6 +198,11 @@ jobs: parameters: PackagePropertiesFolder: $(Build.ArtifactStagingDirectory)/PackageInfo + - task: PipAuthenticate@1 + displayName: 'Pip Authenticate to Azure Artifacts' + inputs: + artifactFeeds: 'public/azure-sdk-for-python' + - script: | python -m pip install markdown2==2.4.6 BeautifulSoup4==4.11.1 displayName: 'pip install markdown2 and BeautifulSoup4'