File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ extends:
74
74
- name : ob_sdl_tsa_configFile
75
75
value : $(Build.SourcesDirectory)\PowerShellGet\.config\tsaoptions.json
76
76
- name : signSrcPath
77
- value : $(repoRoot)
77
+ value : $(repoRoot)/out
78
78
- name : ob_sdl_sbom_enabled
79
79
value : true
80
80
- name : ob_signing_setup_enabled
@@ -104,6 +104,16 @@ extends:
104
104
env:
105
105
ob_restore_phase: true # Set ob_restore_phase to run this step before '🔒 Setup Signing' step.
106
106
107
+ - pwsh : |
108
+ Write-Host "Displaying contents of repoRoot:"
109
+ Get-ChildItem $(repoRoot) -Recurse
110
+ displayName: Get contents of repoRoot
111
+
112
+ - pwsh : |
113
+ Copy-Item $(repoRoot)/src/PowerShellGet.psd1 $(signSrcPath)/PowerShellGet.psd1 -Force
114
+ Copy-Item $(repoRoot)/src/PowerShellGet.psm1 $(signSrcPath)/PowerShellGet.psm1 -Force
115
+ displayName: Copy files to be signed to signSrcPath
116
+
107
117
- task : onebranch.pipeline.signing@1
108
118
displayName : Sign 1st party files
109
119
inputs :
You can’t perform that action at this time.
0 commit comments