From 35b41433ed6c74e2f35b40227009c7e1ba94d54d Mon Sep 17 00:00:00 2001 From: rory Date: Mon, 12 Aug 2024 16:59:39 -0700 Subject: [PATCH] Add better logs for verifying web deploys --- .github/workflows/platformDeploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platformDeploy.yml b/.github/workflows/platformDeploy.yml index ccba036dee9e..88437745b9ac 100644 --- a/.github/workflows/platformDeploy.yml +++ b/.github/workflows/platformDeploy.yml @@ -332,7 +332,7 @@ jobs: run: | DOWNLOADED_VERSION="$(wget -q -O /dev/stdout https://staging.new.expensify.com/version.json | jq -r '.version')" if [[ '${{ github.event.release.tag_name }}' != "$DOWNLOADED_VERSION" ]]; then - echo "Error: deployed version does not match local version. Something went wrong..." + echo "Error: deployed version $DOWNLOADED_VERSION does not match local version ${{ github.event.release.tag_name }}. Something went wrong..." exit 1 fi @@ -341,7 +341,7 @@ jobs: run: | DOWNLOADED_VERSION="$(wget -q -O /dev/stdout https://new.expensify.com/version.json | jq -r '.version')" if [[ '${{ github.event.release.tag_name }}' != "$DOWNLOADED_VERSION" ]]; then - echo "Error: deployed version does not match local version. Something went wrong..." + echo "Error: deployed version $DOWNLOADED_VERSION does not match local version ${{ github.event.release.tag_name }}. Something went wrong..." exit 1 fi