This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2021-06-08 07:40:42 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
echo -e '\e[1m\e[36m========== Installing gulp & dependencies ==========\e[0m'
|
|
|
|
yarn install
|
|
|
|
# Install dependencies one-by-one to avoid race-conditions
|
|
|
|
yarn --cwd ./scripts/shared-hugo-scripts/wiki/
|
|
|
|
yarn --cwd ./scripts/shared-hugo-scripts/compatdb/
|
|
|
|
yarn hugo version
|
|
|
|
echo -e '\e[1m\e[36m========== Starting gulp deploy task ===============\e[0m'
|
2021-06-11 21:04:27 +00:00
|
|
|
if [[ -n "${EPHEMERAL_BASE_URL}" ]]; then
|
|
|
|
echo -e "\e[1m\e[36m========== Ephemeral Mode URL: ${EPHEMERAL_BASE_URL} ===============\e[0m"
|
|
|
|
yarn run gulp all --ephemeral "${EPHEMERAL_BASE_URL}"
|
|
|
|
else
|
|
|
|
yarn run build
|
|
|
|
fi
|
2021-06-08 07:40:42 +00:00
|
|
|
|
|
|
|
echo -e '\e[1m\e[32m Success! Site deployed to `build` folder.\e[0m'
|