all repos — site @ 373a109d3f6dc3a6afa5cb5c1cc2ad882b5bf3fd

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"