-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpublish.sh
executable file
·49 lines (38 loc) · 1.14 KB
/
publish.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
# Copyright (c) 2021, 2023, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#
# This script uses Hugo to generate the site for the project documentation for archived versions.
set -o errexit
set -o pipefail
script="${BASH_SOURCE[0]}"
function usage {
echo "usage: ${script} [-o <directory>] [-h]"
echo " -o Output directory (optional) "
echo " (default: \${WORKSPACE}/documentation, if \${WORKSPACE} defined, else /tmp/weblogic-deploy-tooling) "
echo " -h Help"
exit $1
}
if [[ -z "${WORKSPACE}" ]]; then
outdir="/tmp/weblogic-deploy-tooling"
else
outdir="${WORKSPACE}/documentation"
fi
while getopts "o:h" opt; do
case $opt in
o) outdir="${OPTARG}"
;;
h) usage 0
;;
*) usage 1
;;
esac
done
if [ -d "${outdir}" ]; then
rm -Rf "${outdir:?}/*"
else
mkdir -m777 -p "${outdir}"
fi
echo "Building documentation for current version and for selected archived versions..."
hugo -s 4.0 -d "${outdir}" -b https://oracle.github.io/weblogic-deploy-tooling
echo "Successfully generated documentation in ${outdir}..."