alis/site/deploy-github.sh

9 lines
159 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
cd deploy/
git add .
git commit -m "Site update at $(LC_ALL=en_US.utf8 date +%Y-%m-%dT%H:%M:%S%z)"
git push origin gh-pages
cd ..