uhr/deploy.sh

15 lines
474 B
Bash

#!/bin/sh
echo "Target: ${TARGET}"
if [ "develop" == "${ENVIRON}" ] ; then
echo "Deploying ${CI_BUILD_REF_NAME} to develop. You can access it at .../${CI_BUILD_REF_NAME}"
target="${WWW_DEPLOY_ROOT_DEVELOP}/${CI_BUILD_REF_NAME}"
mkdir -p "${target}"
rm -rf "${target}/*"
mkdir "${target}/dist"
cp -a index.html manifest.appcache info resources "${target}"
cp -a dist/*.min.* "${target}/dist"
else
echo "Automatic deployment to ${ENVIRON} is not yet implemented."
fi