pungi/doc/update-docs.sh
Lubomír Sedlář c14c28a157 docs: Abort update script on error
If building documentation fails, there's no point in trying to update
the repo.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
2017-08-22 10:28:38 +02:00

29 lines
545 B
Bash
Executable File

#!/bin/bash
# Copyright (C) 2015 Red Hat, Inc.
# SPDX-License-Identifier: GPL-2.0
set -e
git clone https://pagure.io/pungi.git /tmp/pungi
pushd /tmp/pungi/doc
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/doc/_build/html/* ./
pushd /tmp/pungi/doc
git checkout 4.0.x
make html
popd
mkdir 4.0
cp -r /tmp/pungi/doc/_build/html/* ./4.0/
git add .
git commit -s -m "update rendered pungi docs"
git push origin master
popd
rm -rf /tmp/pungi/ /tmp/pungi-doc/