add a script to update the docs repo

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2015-12-01 11:24:11 -06:00
parent 6f00f20b3d
commit fd5d3ababb
1 changed files with 20 additions and 0 deletions

20
doc/update-docs.sh Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
# Copyright (C) 2015 Red Hat, Inc.
# SPDX-License-Identifier: GPL-2.0
git clone https://pagure.io/pungi.git /tmp/pungi
pushd /tmp/pungi/docs
make html
popd
git clone ssh://git@pagure.io/docs/pungi.git /tmp/pungi-doc
pushd /tmp/pungi-doc
git rm -fr ./*
cp -r /tmp/pungi/docs/build/html/* ./
git add .
git commit -s -m "update rendered pungi docs"
git push origin master
popd
rm -rf /tmp/pungi/ /tmp/pungi-doc/