From b01d9f99933bb9fa9786e607fee23de270bb3a9e Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 30 Dec 2020 23:22:12 +0000 Subject: [PATCH] using the var that I actually set.... --- .az-pipelines/windows-build-sign.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.az-pipelines/windows-build-sign.yml b/.az-pipelines/windows-build-sign.yml index 5e508dd2891..e1817e23461 100644 --- a/.az-pipelines/windows-build-sign.yml +++ b/.az-pipelines/windows-build-sign.yml @@ -26,9 +26,9 @@ steps: displayName: 'Setting packageVersion' - script: | - echo "package version: $packageVersion" - echo "package version: $(packageVersion)" - echo "package version: ${packageVersion}" + echo "package version: $PACKAGE_VERSION" + echo "package version: ${{ PACKAGE_VERSION }}" + echo "package version: ${ PACKAGE_VERSION }" exit 1 displayName: Package Version testing @@ -55,7 +55,7 @@ steps: - task: PublishPipelineArtifact@1 inputs: - pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-Portable-${ packageVersion }.exe' + pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-Portable-${ PACKAGE_VERSION }.exe' artifactName: Bitwarden-Portable-$(packageVersion).exe # - task: PublishPipelineArtifact@1