From 047db49e256adb78c25c35163a373789414824d3 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 16 Dec 2020 20:24:48 +0000 Subject: [PATCH] debugging grep --- .az-pipelines/sign-windows-artifacts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.az-pipelines/sign-windows-artifacts.yml b/.az-pipelines/sign-windows-artifacts.yml index 33d9bab34c..54ff49cbff 100644 --- a/.az-pipelines/sign-windows-artifacts.yml +++ b/.az-pipelines/sign-windows-artifacts.yml @@ -18,11 +18,11 @@ steps: 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.*?(?=")') + 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" displayName: 'set git_release_version' -- bash: | +- script: | ls -alh $(System.ArtifactsDirectory) echo GIT_RELEASE_VERSION=$(git_release_version) displayName: 'show artifacts'