Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add VSTS signing step #722

Merged
merged 2 commits into from
Aug 14, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add signing script update script
  • Loading branch information
Robert Holt committed Aug 14, 2018
commit d57ea5b80b2566fac2ab8c5cce5dd741c01469df
5 changes: 5 additions & 0 deletions tools/releaseBuild/vstsbuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ Begin
& $gitBinFullPath clone -b master --quiet https://github.com/PowerShell/${releaseToolsDirName}.git $releaseToolsLocation
Import-Module "$releaseToolsLocation/vstsBuild" -Force
Import-Module "$releaseToolsLocation/dockerBasedBuild" -Force -Prefix DockerBased

# Get the update signing script and update the signing XML file
$updateSigningPath = Join-Path $releaseToolsLocation 'updateSigning.ps1'
Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/releaseBuild/updateSigning.ps1' -OutFile $updateSigningPath
& $updateSigningPath -SigningXmlPath (Join-Path $PSScriptRoot 'signing.xml')
}

End {
Expand Down