diff options
author | Martin Stockhammer <martin_s@apache.org> | 2018-11-22 20:32:24 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2018-11-22 20:32:24 +0100 |
commit | 920083ef549e32c8029b0bbce90e698e1cc01c52 (patch) | |
tree | 3cbabd937c2903df2fd2b43fddb998f6a8272782 /archiva-docs/deploySite.sh | |
parent | f528b1addc8164b1466b8dc4aebbf503d43e7152 (diff) | |
download | archiva-920083ef549e32c8029b0bbce90e698e1cc01c52.tar.gz archiva-920083ef549e32c8029b0bbce90e698e1cc01c52.zip |
Adding site deploy script for archiva-docs. Using https urls.
Diffstat (limited to 'archiva-docs/deploySite.sh')
-rwxr-xr-x | archiva-docs/deploySite.sh | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/archiva-docs/deploySite.sh b/archiva-docs/deploySite.sh new file mode 100755 index 000000000..13e822be5 --- /dev/null +++ b/archiva-docs/deploySite.sh @@ -0,0 +1,61 @@ +#!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# +# Author: Martin Stockhammer <martin_s@apache.org> +# Date: 2018-11-15 +# +# Publishes the site content and generated reports to the web content repository. +# It stops after the staging and let you check the content before pushing to the repository +# + +THIS_DIR=$(dirname $0) +THIS_DIR=$(readlink -f ${THIS_DIR}) +CONTENT_DIR=".site-content" + +PROJECT_VERSION=$(grep '<version>' pom.xml |head -1 | sed -e 's/.*<version>\(.*\)<\/version>.*/\1/g') +SUB_DIR="docs/${PROJECT_VERSION}" + +if [ -d "${CONTENT_DIR}/.git" ]; then + git -C "${CONTENT_DIR}" fetch origin + git -C "${CONTENT_DIR}" reset --hard origin/master +fi + +echo ">>>> Creating site and reports <<<<" +mvn clean site site:stage "$@" + +echo "*****************************************" +echo ">>>> Finished the site stage process <<<<" +echo "> You can check the content in the folder target/staging or by opening the following url" +echo "> file://${THIS_DIR}/target/staging/${SUB_DIR}/index.html" +echo "> " +echo "> If everything is fine enter yes. After that the publish process will be started." +echo -n "Do you want to publish (yes/no)? " +read ANSWER + +if [ "${ANSWER}" == "yes" -o "${ANSWER}" == "YES" ]; then + echo "> Starting publish process" + mvn scm-publish:publish-scm "$@" +else + echo "> Aborting now" + echo "> Running git reset in .site-content directory" + git -C "${CONTENT_DIR}" fetch origin + git -C "${CONTENT_DIR}" reset --hard origin/master + echo ">>>> Finished <<<<" +fi + |