all repos — site @ a9c5aa639b45ec30596a8dd03ec1026d7538f39b

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"