all repos — site @ 1f806da3a20fe6f34628adf3729af6eda308caf3

source for my site, found at icyphox.sh

deploy.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
#!/usr/bin/env bash

# colors
ylw='\033[0;33m'
grn='\033[0;32m'
rst='\033[0m'

echo -e "$ylw[~]$rst Deploying to gh-pages..."
git subtree push --prefix build origin gh-pages
echo -e "$grn[+]$rst Done! Check it out at: https://icy.ph0x.me"