passepartout-apple/ci/push-refs.sh
Davide De Rosa 157f336184 Embed fastlane scripts locally
Drop submodule.
2022-10-04 08:20:06 +02:00

15 lines
374 B
Bash
Executable File

#!/bin/bash
if !(git checkout master && git push && git push github); then
echo "Error while pushing master"
exit 1
fi
if !(git push --tags && git push --tags github); then
echo "Error while pushing tags"
exit 1
fi
if !(git checkout stable && git merge master && git push github); then
echo "Error while pushing stable"
exit 1
fi
git checkout master