File tree 1 file changed +2
-0
lines changed 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -334,6 +334,7 @@ jobs:
334
334
- name : Verify staging deploy
335
335
if : ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
336
336
run : |
337
+ sleep 5
337
338
DOWNLOADED_VERSION="$(wget -q -O /dev/stdout https://staging.new.expensify.com/version.json | jq -r '.version')"
338
339
if [[ '${{ github.event.release.tag_name }}' != "$DOWNLOADED_VERSION" ]]; then
339
340
echo "Error: deployed version $DOWNLOADED_VERSION does not match local version ${{ github.event.release.tag_name }}. Something went wrong..."
@@ -343,6 +344,7 @@ jobs:
343
344
- name : Verify production deploy
344
345
if : ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
345
346
run : |
347
+ sleep 5
346
348
DOWNLOADED_VERSION="$(wget -q -O /dev/stdout https://new.expensify.com/version.json | jq -r '.version')"
347
349
if [[ '${{ github.event.release.tag_name }}' != "$DOWNLOADED_VERSION" ]]; then
348
350
echo "Error: deployed version $DOWNLOADED_VERSION does not match local version ${{ github.event.release.tag_name }}. Something went wrong..."
You can’t perform that action at this time.
0 commit comments