From 9bcebfd66848ed8baf691f536e3a8d215b7395b1 Mon Sep 17 00:00:00 2001 From: Barrett LaFrance Date: Tue, 19 Dec 2023 11:49:12 -0600 Subject: [PATCH] wip: test build script in CI --- .github/workflows/docs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7c40ed7d9..6b545de3e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -43,5 +43,7 @@ jobs: - name: Build the docs! run: | - ls -la - npm --workspace build run now -- --site ./docs --core ./core \ No newline at end of file + SITE=$(realpath ./docs) + CORE=$(realpath ./core) + cd ./docs + npm --workspace build run now -- --site "$SITE" --core "$CORE" \ No newline at end of file