From c1c8ea4afbb961a9aeac36d0a0daa496c1a4735a Mon Sep 17 00:00:00 2001 From: jnywong Date: Sun, 27 Oct 2024 16:12:53 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Add=20working=20directory=20to?= =?UTF-8?q?=20build=20HTML?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index a2eb2e3..ec30b1d 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -36,11 +36,12 @@ jobs: - name: Install MyST Markdown run: npm install -g mystmd - name: Build HTML Assets + working-directory: ./docs run: myst build --html - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - path: "./_build/html" + path: "./docs/_build/html" - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4