22 lines
372 B
Bash
Executable File
22 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Update git repo
|
|
git_update.sh -d "$HTTP_DIR" -r "${GIT_SOURCE_BRANCH:-main}" "$GIT_SOURCE_REPO"
|
|
|
|
cd "$HTTP_DIR"
|
|
|
|
# Get remote content files
|
|
rclone_ncloud_publiclink.sh
|
|
|
|
# Invalid cache
|
|
#rm -rf "/tmp/hugo_cache_$USER"
|
|
|
|
cd themes/blist
|
|
npm install
|
|
cd ../..
|
|
npm install postcss-cli
|
|
|
|
# Build website
|
|
HUGO_CACHEDIR="/tmp/hugo_cache_$USER" hugo
|