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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#!/usr/bin/env bash
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed 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.
# Publishes a new version of the Jsonnet website.
#
# This script does the following:
#
# 1. Builds an archive containing the Jekyll website
# 2. In a temporary directory or the provided WORKING_DIR, clones the
# Jsonnet website, and checks out the gh-pages branch
# 3. Replaces the contents of the repository with the new version of the site
# from the archive
# 4. Commits the new version of the site and pushes to the remote repository.
#
# Usage:
# push_docs.sh [WORKING_DIR]
set -e
readonly JSONNET_REPO="git@github.com.:google/jsonnet.git"
function check {
which $1 > /dev/null || (echo "$1 not installed. Please install $1."; exit 1)
}
check git
check jekyll
if [ ! -r 'doc/_config.yml' ]; then
echo 'No doc/_config.yml file found.' >&1
echo 'Are you running this script from the root of the Jsonnet repository?' >&1
exit 1
fi
if [ ! -r 'doc/js/libjsonnet.wasm' ]; then
echo 'Cannot push as doc/js/libjsonnet.wasm has not been built.' >&1
exit 1
fi
working_dir=$1
if [ -z "$working_dir" ]; then
working_dir=$(mktemp -d "/tmp/jsonnet_gh_pages_XXXX")
# Clean it up automatically on exit.
trap "rm -rf ${working_dir}" EXIT
fi
git clone $JSONNET_REPO "$working_dir"
(
cd "$working_dir"
git checkout gh-pages
rm $(git ls-tree --name-only -r HEAD)
)
tools/scripts/update_web_content.sh
cd doc
jekyll build -d "$working_dir"
(
cd "$working_dir"
git add .
git commit -am "Update docs."
git push -u origin gh-pages
)
|