Skip to content

Commit 6b64aec

Browse files
authored
Fix yaml indentation issue in Integration stage (Azure#48976)
1 parent e0b8da9 commit 6b64aec

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

eng/pipelines/templates/stages/archetype-net-release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -298,21 +298,21 @@ stages:
298298
packagesToPush: '$(Pipeline.Workspace)/${{parameters.ArtifactName}}-signed/${{artifact.name}}/*.nupkg;!$(Pipeline.Workspace)/${{parameters.ArtifactName}}-signed/${{artifact.name}}/*.symbols.nupkg'
299299
publishVstsFeed: $(DevOpsFeedID)
300300

301-
steps:
302-
- template: /eng/common/pipelines/templates/steps/sparse-checkout.yml
303-
- download: current
304-
displayName: Download ${{parameters.ArtifactName}}-signed
305-
artifact: ${{parameters.ArtifactName}}-signed
306-
- pwsh: |
307-
# For safety default to publishing to the private feed.
308-
# Publish to https://dev.azure.com/azure-sdk/internal/_packaging?_a=feed&feed=azure-sdk-for-net-pr
309-
$devopsFeedId = '590cfd2a-581c-4dcb-a12e-6568ce786175/fa8b2d77-74d9-48d7-bb96-badb2b9c6ca4'
310-
if ('$(Build.Repository.Name)' -eq 'Azure/azure-sdk-for-net') {
311-
$devopsFeedId = '${{ parameters.DevOpsFeedID }}'
312-
}
313-
echo "##vso[task.setvariable variable=DevOpsFeedID]$devopsFeedId"
314-
echo "Using DevopsFeedId = $devopsFeedId"
315-
displayName: Setup DevOpsFeedId
301+
steps:
302+
- template: /eng/common/pipelines/templates/steps/sparse-checkout.yml
303+
- download: current
304+
displayName: Download ${{parameters.ArtifactName}}-signed
305+
artifact: ${{parameters.ArtifactName}}-signed
306+
- pwsh: |
307+
# For safety default to publishing to the private feed.
308+
# Publish to https://dev.azure.com/azure-sdk/internal/_packaging?_a=feed&feed=azure-sdk-for-net-pr
309+
$devopsFeedId = '590cfd2a-581c-4dcb-a12e-6568ce786175/fa8b2d77-74d9-48d7-bb96-badb2b9c6ca4'
310+
if ('$(Build.Repository.Name)' -eq 'Azure/azure-sdk-for-net') {
311+
$devopsFeedId = '${{ parameters.DevOpsFeedID }}'
312+
}
313+
echo "##vso[task.setvariable variable=DevOpsFeedID]$devopsFeedId"
314+
echo "Using DevopsFeedId = $devopsFeedId"
315+
displayName: Setup DevOpsFeedId
316316
317317
- job: PublishDocsToNightlyBranch
318318
dependsOn: PublishPackages

0 commit comments

Comments
 (0)