mirror of
https://github.com/Noratrieb/blog.git
synced 2026-01-14 04:25:01 +01:00
10 lines
No EOL
154 B
Bash
Executable file
10 lines
No EOL
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
git stash
|
|
git checkout gh-pages
|
|
hugo -D
|
|
git add ./public
|
|
git commit -m "deploy"
|
|
git push origin gh-pages
|
|
git checkout -
|
|
git stash pop |