devops: do not fail check when refusing to publish TOT revision (#3443)

This commit is contained in:
Andrey Lushnikov 2020-08-13 10:39:45 -07:00 committed by GitHub
parent 84ca0120f8
commit 4f05039944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,8 +66,8 @@ elif [[ $1 == "--tip-of-tree" ]]; then
UPSTREAM_SHA=$(git ls-remote https://github.com/microsoft/playwright --tags $(git rev-parse --abbrev-ref HEAD) | cut -f1)
CURRENT_SHA=$(git rev-parse HEAD)
if [[ "${UPSTREAM_SHA}" != "${CURRENT_SHA}" ]]; then
echo "REFUSING TO PUBLISH: this is not tip-of-tree"
exit 1
echo "FYI: REFUSING TO PUBLISH since this is not tip-of-tree"
exit 0
fi
NPM_PUBLISH_TAG="next"
else