diff --git a/.az-pipelines/sign-windows-artifacts.yml b/.az-pipelines/sign-windows-artifacts.yml index f73916bf5a..7493250d70 100644 --- a/.az-pipelines/sign-windows-artifacts.yml +++ b/.az-pipelines/sign-windows-artifacts.yml @@ -7,21 +7,22 @@ variables: - group: code-signing-test steps: - #- task: DotNetCoreCLI@2 - # inputs: - # command: 'custom' - # custom: 'tool' - # arguments: 'install --global azuresigntool' + #- script: | + # set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true + # dotnet tool install --global AzureSignTool --version 2.0.17 # displayName: 'install AzureSignTool' - + - script: | - set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true - dotnet tool install --global AzureSignTool --version 2.0.17 - displayName: 'install AzureSignTool' + git clone https://github.com/vcsjones/AzureSignTool.git + dotnet build + displayName: 'Install AST' -- script: AzureSignTool.exe sign --help +- script: azuresigntool sign --help displayName: 'Debugging AST' +- script: exit 1 + displayName: Premature Exit + - task: DownloadGitHubRelease@0 inputs: connection: joseph-flinn