Skip to content

Commit

Permalink
Fix casing of publish-pipeline-artifacts template (#14748)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmitche committed Apr 29, 2024
1 parent 97e2f41 commit be93330
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions eng/common/templates/steps/publish-pipeline-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ steps:
${{ if parameters.args.continueOnError }}:
continueOnError: ${{ parameters.args.continueOnError }}
inputs:
TargetPath: ${{ parameters.args.TargetPath }}
${{ if parameters.args.ArtifactName }}:
ArtifactName: ${{ parameters.args.ArtifactName }}
${{ if parameters.args.PublishLocation }}:
PublishLocation: ${{ parameters.args.PublishLocation }}
${{ if parameters.args.FileSharePath }}:
FileSharePath: ${{ parameters.args.FileSharePath }}
targetPath: ${{ parameters.args.targetPath }}
${{ if parameters.args.artifactName }}:
artifactName: ${{ parameters.args.artifactName }}
${{ if parameters.args.publishLocation }}:
publishLocation: ${{ parameters.args.publishLocation }}
${{ if parameters.args.fileSharePath }}:
fileSharePath: ${{ parameters.args.fileSharePath }}
${{ if parameters.args.Parallel }}:
Parallel: ${{ parameters.args.Parallel }}
${{ if parameters.args.ParallelCount }}:
ParallelCount: ${{ parameters.args.ParallelCount }}
${{ if parameters.args.Properties }}:
Properties: ${{ properties.args.Properties }}
parallel: ${{ parameters.args.Parallel }}
${{ if parameters.args.parallelCount }}:
parallelCount: ${{ parameters.args.parallelCount }}
${{ if parameters.args.properties }}:
properties: ${{ properties.args.properties }}

0 comments on commit be93330

Please sign in to comment.