mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
automate updating the borgbackup.github.io repo/website
cd docs ; make gh-io
This commit is contained in:
parent
9d1560f830
commit
f6442fe7f0
1 changed files with 8 additions and 0 deletions
|
@ -138,5 +138,13 @@ gh-pages: html
|
||||||
(cd $$GH_PAGES_CLONE && git add -A && git commit -m 'Updated gh-pages' && git push) && \
|
(cd $$GH_PAGES_CLONE && git add -A && git commit -m 'Updated gh-pages' && git push) && \
|
||||||
rm -rf $$GH_PAGES_CLONE
|
rm -rf $$GH_PAGES_CLONE
|
||||||
|
|
||||||
|
gh-io: html
|
||||||
|
GH_IO_CLONE="`mktemp -d`" && \
|
||||||
|
git clone git@github.com:borgbackup/borgbackup.github.io.git $$GH_IO_CLONE && \
|
||||||
|
(cd $$GH_IO_CLONE && git rm -r *) && \
|
||||||
|
cp -r _build/html/* $$GH_IO_CLONE && \
|
||||||
|
(cd $$GH_IO_CLONE && git add -A && git commit -m 'Updated borgbackup.github.io' && git push) && \
|
||||||
|
rm -rf $$GH_IO_CLONE
|
||||||
|
|
||||||
inotify: html
|
inotify: html
|
||||||
while inotifywait -r . --exclude usage.rst --exclude '_build/*' ; do make html ; done
|
while inotifywait -r . --exclude usage.rst --exclude '_build/*' ; do make html ; done
|
||||||
|
|
Loading…
Reference in a new issue