deploy.sh (view raw)
1#!/usr/bin/env bash 2 3# colors 4ylw='\033[0;33m' 5grn='\033[0;32m' 6rst='\033[0m' 7 8echo -e "$ylw[~]$rst Deploying to gh-pages..." 9git subtree push --prefix build origin gh-pages 10echo -e "$grn[+]$rst Done! Check it out at: https://icy.ph0x.me"