Stackedit/run_deploy
2013-05-18 15:52:20 +01:00

12 lines
299 B
Bash

#!/bin/sh
set -e
echo '### Optimizing resources ###'
scripts/run_optimize
echo '### Modifying cache.manifest ###'
sed -i "s/^#.*$/# `date`/g" cache.manifest
echo '### Commit and push ###'
git commit -a -m "Prepare deployment"
git checkout gh-pages
git merge master
git checkout master
git push --all