summaryrefslogtreecommitdiff
path: root/.github/build_site.sh
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-22 22:00:02 -0400
committerseth <[email protected]>2024-05-22 20:45:24 -0600
commit8fd8b7e53d59a034706dd7eaad6b608721ce3cdb (patch)
tree2ce7e4a8b7eafc9d8550a54aa6d4f34d678d76f5 /.github/build_site.sh
parent329bf8a3384474cfe45ecae142dfb7d97b699aa2 (diff)
move to zola
Diffstat (limited to '.github/build_site.sh')
-rwxr-xr-x.github/build_site.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/build_site.sh b/.github/build_site.sh
index b4a0455..bc1df9e 100755
--- a/.github/build_site.sh
+++ b/.github/build_site.sh
@@ -5,9 +5,10 @@
set -euo pipefail
function build_site {
- pnpm install --frozen-lockfile
- pnpm run ci
- pnpm run build
+ asdf plugin add zola https://github.com/salasrod/asdf-zola
+ asdf install zola 0.17.2
+ asdf global zola 0.17.2
+ zola build --output-dir dist
}