all repos — site @ c9cd1ddb1ee9dec8490b10761622ac5a2abe3280

source for my site, found at icyphox.sh

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"