From a26b06c33cf63203a10e5f80dd1c145ee59793b7 Mon Sep 17 00:00:00 2001 From: Tamas Spisak Date: Fri, 24 Nov 2023 21:51:20 +0100 Subject: [PATCH] Update myst-gh-pages.yml --- .github/workflows/myst-gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/myst-gh-pages.yml b/.github/workflows/myst-gh-pages.yml index e4eef1e..243ac5a 100644 --- a/.github/workflows/myst-gh-pages.yml +++ b/.github/workflows/myst-gh-pages.yml @@ -37,21 +37,21 @@ jobs: run: npm install -g mystmd - name: Manually download docx template run: | - cd docs + cd manuscript wget https://github.com/myst-templates/docx_default/archive/refs/heads/main.zip mkdir -p _build/templates/docx/myst/default unzip main.zip -d _build/templates/docx/myst/default cp _build/templates/docx/myst/default/docx_default-main/styles.xml _build/templates/docx/myst/default/styles.xml - name: Build HTML Assets run: | - cd docs + cd manuscript myst build --docx myst build --pdf myst build --html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: - path: './docs/_build/html' + path: './manuscript/_build/html' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2