mirror of
https://github.com/matrix-org/matrix.org.git
synced 2026-01-11 20:07:22 +00:00
12 lines
352 B
Bash
12 lines
352 B
Bash
# !/bin/bash
|
|
|
|
if [ "$CF_PAGES_BRANCH" == "main" ]; then
|
|
# build production using base_url from the site config.toml
|
|
zola build
|
|
elif [ "$CF_PAGES_BRANCH" == "staging" ]; then
|
|
# build staging using CF_STAGING_URL env
|
|
zola build --base-url $CF_STAGING_URL
|
|
else
|
|
# build using the default cf pages env url
|
|
zola build --base-url $CF_PAGES_URL
|
|
fi
|