all repos — site @ 3d14a1a4cbf0b1ffc30914d7d5a6cbba73bda5e7

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"