summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-08 11:49:47 -0400
committerGitHub <[email protected]>2024-10-08 11:49:47 -0400
commit20d62336a446bea6c5846805e8325b67cd59fe54 (patch)
tree46a92b1de1021eb0631b54f664ba0c2ddf6752c6 /.github
parent07cb04200916169671b9c426fbfe9a24bb0fa79e (diff)
nice redesign (#145)
* nix: drop treefmt * nix: remove .envrc * nix: move `serve` to apps output * nice redesign * use local stylesheet * nix: fix build
Diffstat (limited to '.github')
-rwxr-xr-x.github/build_site.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/.github/build_site.sh b/.github/build_site.sh
deleted file mode 100755
index bc1df9e..0000000
--- a/.github/build_site.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-#
-# ci wrapper for building the website. build commands below
-#
-set -euo pipefail
-
-function build_site {
- 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
-}
-
-
-# get the root directory of the project
-# (so the parent directory of this script's parent directory)
-REPO_DIR="$(readlink -f "$0" | xargs dirname)"/..
-
-cd "$REPO_DIR"
-build_site