#!/bin/bash set -e #set -x [[ -z "$WORKSPACE" ]] && WORKSPACE=$(pwd -P) HTDOCS=${HTDOCS:-$WORKSPACE/docs-webtemplate/build-dev/} TMPDIR=${TMPDIR:-$WORKSPACE/upload-gh} # publish the docs ssh-keyscan -H github.com >> ~/.ssh/known_hosts rm -rf $TMPDIR || true mkdir -p $TMPDIR git clone -b gh-pages git@github.com:automotive-grade-linux/docs-gh-pages.git $TMPDIR/upload-gh-pages rm -rf $TMPDIR/upload-gh-pages/* cp -ar $HTDOCS/* $TMPDIR/upload-gh-pages/ # tell github that we're serving this as docs.automotivelinux.org echo "old-docs.automotivelinux.org" > $TMPDIR/upload-gh-pages/CNAME pushd $TMPDIR/upload-gh-pages git config user.name build.automotivelinux.org git config user.email jenkins@automotivelinux.org git diff git add . git commit --amend -m"Render: $(date)" git push origin gh-pages:gh-pages -f popd