2016-08-11 03:34:27 +08:00
|
|
|
#!/bin/bash
|
2019-06-24 22:01:18 +08:00
|
|
|
|
|
|
|
# Copyright © 2016-2019 by The qTox Project Contributors
|
2016-08-11 03:34:27 +08:00
|
|
|
#
|
|
|
|
# This program is libre software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Fail out on error
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
2016-08-11 17:51:53 +08:00
|
|
|
# Extract html documentation directory from doxygen configuration
|
|
|
|
OUTPUT_DIR_CFG=( $(grep 'OUTPUT_DIRECTORY' "$DOXYGEN_CONFIG_FILE") )
|
|
|
|
HTML_OUTPUT_CFG=( $(grep 'HTML_OUTPUT' "$DOXYGEN_CONFIG_FILE") )
|
|
|
|
|
|
|
|
DOCS_DIR="./${OUTPUT_DIR_CFG[2]}/${HTML_OUTPUT_CFG[2]}/"
|
2016-08-11 03:34:27 +08:00
|
|
|
|
|
|
|
# Ensure docs exists
|
2016-08-11 17:51:53 +08:00
|
|
|
if [ ! -d "$DOCS_DIR" ]
|
2016-08-11 03:34:27 +08:00
|
|
|
then
|
2016-08-11 15:39:14 +08:00
|
|
|
echo "Docs deploy failing, no $DOCS_DIR present."
|
2016-08-11 03:34:27 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Obtain git commit hash from HEAD
|
|
|
|
GIT_CHASH=$(git rev-parse HEAD)
|
|
|
|
|
|
|
|
# Push generated doxygen to GitHub pages
|
2016-08-11 17:51:53 +08:00
|
|
|
cd "$DOCS_DIR"
|
2016-08-11 03:34:27 +08:00
|
|
|
|
2016-08-12 05:21:56 +08:00
|
|
|
git init --quiet
|
2022-02-17 00:12:10 +08:00
|
|
|
git config user.name "qTox bot"
|
2016-08-11 03:34:27 +08:00
|
|
|
git config user.email "qTox@users.noreply.github.com"
|
|
|
|
|
|
|
|
git add .
|
|
|
|
git commit --quiet -m "Deploy to GH pages from commit: $GIT_CHASH"
|
|
|
|
|
|
|
|
echo "Pushing to GH pages..."
|
2022-02-24 21:50:07 +08:00
|
|
|
touch /tmp/access_key
|
2022-02-22 00:42:40 +08:00
|
|
|
chmod 600 /tmp/access_key
|
|
|
|
echo "$access_key" > /tmp/access_key
|
|
|
|
GIT_SSH_COMMAND="ssh -i /tmp/access_key" git push --force --quiet "git@github.com:qTox/doxygen.git" master:gh-pages
|