21
1
Bifurcation 0
miroir de https://github.com/Evolix/chexpire.git synchronisé 2024-05-08 11:38:38 +02:00

deploy scripts with emojis

Cette révision appartient à :
Jérémy Lecour 2019-08-25 17:36:36 +02:00
Parent 9a29a200ec
révision ead3b8b532
2 fichiers modifiés avec 9 ajouts et 0 suppressions

Voir le fichier

@ -34,6 +34,7 @@ if [ "${confirmed}" != "y" ]; then
exit 1
fi
echo "🚀 Deploying master to production !"
bundle exec cap production deploy
echo "😎 Done !"

Voir le fichier

@ -6,7 +6,15 @@
set -e
[ -n "$DEBUG" ] && set -x
echo "👀 Fetching git repository information…"
git fetch origin --quiet
CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD`
echo "🚀 Deploying ${CURRENT_BRANCH} to staging !"
git branch -f staging
git push --force origin staging
bundle exec cap staging deploy
echo "😎 Done !"