1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-28 03:57:47 +02:00

debugging grep

This commit is contained in:
Joseph Flinn 2020-12-16 20:24:48 +00:00
parent f294e43262
commit 047db49e25

View File

@ -18,11 +18,11 @@ steps:
displayName: 'git release artifacts' displayName: 'git release artifacts'
- bash: | - 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" echo "##vso[task.setvariable variable=git_release_version]$GIT_RELEASE_VERSION"
displayName: 'set git_release_version' displayName: 'set git_release_version'
- bash: | - script: |
ls -alh $(System.ArtifactsDirectory) ls -alh $(System.ArtifactsDirectory)
echo GIT_RELEASE_VERSION=$(git_release_version) echo GIT_RELEASE_VERSION=$(git_release_version)
displayName: 'show artifacts' displayName: 'show artifacts'