Skip to content

Commit

Permalink
Merge pull request #47275 from Expensify/Rory-BetterLogsInDeployValid…
Browse files Browse the repository at this point in the history
…ation

[No QA] Add better logs for verifying web deploys
  • Loading branch information
Beamanator authored Aug 13, 2024
2 parents c9a5c66 + 35b4143 commit 5cf7de5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/platformDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5cf7de5

Please sign in to comment.