We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sbom
analyze
1 parent e03d06f commit 0b50606Copy full SHA for 0b50606
eng/pipelines/templates/steps/analyze.yml
@@ -161,6 +161,16 @@ steps:
161
162
- template: /eng/common/pipelines/templates/steps/eng-common-workflow-enforcer.yml
163
164
+ # the pip authenticate task sets PIP_INDEX_URL value to the internal feed URL
165
+ # we should reset it such that the next task uses public pypi
166
+ - pwsh: |
167
+ if (Test-Path "~/.pypirc") {
168
+ Remove-Item "~/.pypirc"
169
+ }
170
+
171
+ Write-Host "##vso[task.setvariable variable=PIP_INDEX_URL;]"
172
+ displayName: Reset PIP INDEX URL
173
174
- template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
175
parameters:
176
ArtifactPath: '$(Build.ArtifactStagingDirectory)/reports'
0 commit comments