diff --git a/.az-pipelines/sign-windows-artifacts.yml b/.az-pipelines/sign-windows-artifacts.yml index 33f6ef7b62..64a4e40b14 100644 --- a/.az-pipelines/sign-windows-artifacts.yml +++ b/.az-pipelines/sign-windows-artifacts.yml @@ -3,9 +3,6 @@ trigger: none pool: vmImage: 'windows-latest' -variables: - gitReleaseVersion: $[ curl --silent "https://api.github.com/repos/joseph-flinn/desktop/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' ] - steps: - task: DotNetCoreCLI@2 inputs: @@ -19,6 +16,10 @@ steps: userRepository: joseph-flinn/desktop displayName: 'git release artifacts' +- bash: | + GIT_RELEASE_VERSION=$(curl --silent "https://api.github.com/repos/joseph-flinn/desktop/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")') + echo "##vso[task.setvariable variable=git_release_version]$GIT_RELEASE_VERSION" + - script: | ls -alh $(System.ArtifactsDirectory) echo GIT_RELEASE_VERSION=$GIT_RELEASE_VERSION