-
Notifications
You must be signed in to change notification settings - Fork 21
/
vercel.sh
executable file
·65 lines (58 loc) · 1.52 KB
/
vercel.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
set -euo pipefail
USAGE="Usage:
build: vercel.sh
install deps: vercel.sh install
"
if [ $# -eq 0 ]; then
CMD="build"
elif [ $# -eq 1 ]; then
CMD="$1"
else
echo "${USAGE}"
exit 1
fi
INSTALL_PREFIX="/usr/local"
export PATH="${PATH}:${INSTALL_PREFIX}/go/bin"
install_dependencies() {
if [ -z "${VERCEL:-}" ]; then
echo "Not in Vercel, skipping install. Devcontainer already has everything installed."
return
fi
echo "installing npm dependencies"
npm install
echo "installing hugo"
# TODO: move hugo version to its own file so it can be easily parsed by devcontainer
# init scripts and renovate can update it.
HUGO_VERSION="0.124.1"
HUGO_URL="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
curl -sSL "${HUGO_URL}" | tar -zx -C "${INSTALL_PREFIX}/bin"
echo "installing golang"
LATEST_GO_VERSION=$(curl -sSL https://go.dev/VERSION?m=text| head -n 1)
curl -sSL "https://dl.google.com/go/${LATEST_GO_VERSION}.linux-amd64.tar.gz" | \
tar -zx -C "${INSTALL_PREFIX}"
go version
}
build() {
echo "printing env..."
env | sort
echo "clean output directories..."
rm -rf ./.vercel/output ./public
echo "building..."
hugo --gc --minify
mkdir -p .vercel/output/
node scripts/vercel/config.mjs > .vercel/output/config.json
cp -r public .vercel/output/static
}
case "${CMD}" in
"install")
install_dependencies
;;
"build")
build
;;
*)
echo "${USAGE}"
exit 1
;;
esac