Skip to content

Commit c545a4e

Browse files
authored
Fix expected path for built binaries for code signing (#1302)
## Why make this change? - The PR #1241 fixed our folder structure of the output binaries and in the process of making cli and engine paths consistent removed the `buildConfiguration` from the output path. - The code signing task still depended the binaries to be in the previous path. We didn't catch this before since a new release was not attempted earlier to recognize we may hit this issue. ## What is this change? - Modify the path where the code signing task looks for the binaries.
1 parent 5baef59 commit c545a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pipelines/build-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ steps:
132132
parameters:
133133
# This is the path that will be used for packing nuget package.
134134
# We will need to sign the binaries in this location.
135-
path: '$(Build.SourcesDirectory)/src/out/cli/$(buildConfiguration)/net6.0/publish'
135+
path: '$(Build.SourcesDirectory)/src/out/cli/net6.0/publish'
136136

137137
# Create nuget package after the binaries are signed. So that the binaries inside nuget package are signed.
138138
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)