From b52f107810ecaaac302c19d3a2aafb0b5cd43014 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 16 Dec 2020 19:33:14 +0000 Subject: [PATCH] trying different variable block format --- .az-pipelines/sign-windows-artifacts.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.az-pipelines/sign-windows-artifacts.yml b/.az-pipelines/sign-windows-artifacts.yml index f374319d25a..33f6ef7b623 100644 --- a/.az-pipelines/sign-windows-artifacts.yml +++ b/.az-pipelines/sign-windows-artifacts.yml @@ -4,8 +4,7 @@ pool: vmImage: 'windows-latest' variables: -- name: GIT_RELEASE_VERSION - value: $[ curl --silent "https://api.github.com/repos/joseph-flinn/desktop/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' ] + gitReleaseVersion: $[ curl --silent "https://api.github.com/repos/joseph-flinn/desktop/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' ] steps: - task: DotNetCoreCLI@2