mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-12 17:05:50 +00:00
30 lines
698 B
Bash
Executable File
30 lines
698 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Find current directory & configure paths
|
|
SCRIPT_PATH=$(realpath $0)
|
|
SCRIPT_DIR=$(dirname $SCRIPT_PATH)
|
|
PROJECT_ROOT=$SCRIPT_DIR/../..
|
|
DEPLOY_DIR=$1
|
|
BUILD_DIR=$PROJECT_ROOT/docs/.vuepress/dist
|
|
|
|
# assuming you are already on the right branch
|
|
git pull -ff
|
|
|
|
GIT_REF=$(git rev-parse --short HEAD)
|
|
DEPLOY_DIR_REF=$DEPLOY_DIR-$GIT_REF
|
|
|
|
# Parameter is a proper directory?
|
|
if [ -d "$DEPLOY_DIR_REF" ]; then
|
|
return "Directory '$DEPLOY_DIR_REF' does already exist" 2>/dev/null || exit 1
|
|
fi
|
|
|
|
# Build the project
|
|
cd $PROJECT_ROOT
|
|
rm -R $BUILD_DIR
|
|
npm install
|
|
npm run build
|
|
|
|
# Copy files and Sym link
|
|
mkdir $DEPLOY_DIR_REF/
|
|
cp -r $BUILD_DIR/* $DEPLOY_DIR_REF/
|
|
ln -sfn $DEPLOY_DIR_REF $DEPLOY_DIR |