mirror of https://github.com/docker/docs.git
24 lines
823 B
Bash
Executable File
24 lines
823 B
Bash
Executable File
# Install go if needed
|
|
cd site
|
|
export TOOLS_ROOT_DIR=$HOME/site/deployments/tools
|
|
export HUGOROOT=$TOOLS_ROOT_DIR/hugo
|
|
export PATH=$PATH:$HUGOROOT
|
|
#export GOPATH=$DEPLOYMENT_SOURCE
|
|
if [ ! -e "$HUGOROOT" ]; then
|
|
export HUGO_ARCHIVE_DIR=$HOME/tmp
|
|
export HUGO_ARCHIVE=${HUGO_ARCHIVE_DIR}/hugo.zip
|
|
mkdir -p ${HUGO_ARCHIVE_DIR}
|
|
curl -L https://github.com/spf13/hugo/releases/download/v0.14/hugo_0.14_windows_amd64.zip -o $HUGO_ARCHIVE
|
|
# This will take a while ...
|
|
unzip -o $HUGO_ARCHIVE -d $HUGOROOT
|
|
fi
|
|
|
|
export BASE_URL="https://$WEBSITE_HOSTNAME"
|
|
#if [ "$WEBSITE_HOSTNAME" == "docker-toolbox.azurewebsites.net" ]; then
|
|
# export BASE_URL="https://toolbox.docker.com"
|
|
#fi
|
|
|
|
# Create and store unique artifact name
|
|
hugo_0.14_windows_amd64.exe --baseUrl=$BASE_URL -d $DEPLOYMENT_TARGET
|
|
cp web.config $DEPLOYMENT_TARGET
|