9 lines
186 B
Bash
Executable File
9 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
echo '### Optimizing resources ###'
|
|
tools/run_optimize
|
|
echo '### Commit and push ###'
|
|
git commit -a -m "Prepare deployment"
|
|
git branch -f gh-pages master
|
|
git push --all
|