From 4547cc4eaf00bc6a1050036e9861b001cb4be040 Mon Sep 17 00:00:00 2001 From: Archie Wood <58074498+archiewood@users.noreply.github.com> Date: Tue, 29 Oct 2024 01:00:57 -0400 Subject: [PATCH] prefix --- .github/workflows/deploy_docs.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 8fe8d2f..4b211ab 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -23,19 +23,16 @@ jobs: with: node-version: '20' - - name: Change directory - run: cd docs - - name: Install dependencies - run: npm install + run: npm install --prefix docs - name: Build static files - run: npm run build + run: npm run build --prefix docs - name: Upload static files as artifact uses: actions/upload-pages-artifact@v3 with: - path: build/ + path: docs/build/ # Deployment job deploy: