Commit 350b9a94 by Dominik Prokop Committed by Ryan McKinley

Packages: Temporarily skip canary releases if packages build fail (#18577)

parent 08973a88
......@@ -46,6 +46,12 @@ else
echo $'\nBuilding packages'
yarn packages:build
exit_status=$?
if [ $exit_status -eq 1 ]; then
echo "Packages build failed, skipping canary release"
# TODO: notify on slack/email?
exit
fi
prapare_version_commit
unpublish_previous_canary
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment