File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -267,6 +267,9 @@ jobs:
267267 throw "tar verify failed: $PSModuleTarFilePath is invalid."
268268 }
269269
270+ $psModuleArchiveHash = (Get-FileHash -Path "$PSModuleTarFilePath").Hash
271+ Write-Host "PS module archive hash: $psModuleArchiveHash"
272+
270273 Set-PSDebug -Off # Too many traces are logged when running New-ModulePackage.
271274 New-ModulePackage $DGatewayPSModulePath $PSModuleParentPath
272275
Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ jobs:
171171 tar -xvzf $WebAppArchive.FullName -C $TargetPath --strip-components=1
172172
173173 $PowerShellArchive = Get-ChildItem -Recurse -Filter "DevolutionsGateway-ps-*.tar" | Select-Object -First 1
174+ $psModuleArchiveHash = (Get-FileHash -Path "$PowerShellArchive").Hash
175+ Write-Host "PS module archive hash: $psModuleArchiveHash"
174176 tar -xvf "$PowerShellArchive" -C "$PkgDir"
175177
176178 - name : Build container
You can’t perform that action at this time.
0 commit comments