From 460793738faab1e9b9062a78b611e264c895bea2 Mon Sep 17 00:00:00 2001 From: Rahul Birmiwal Date: Thu, 28 Mar 2024 11:49:27 -0700 Subject: [PATCH] debug --- .github/workflows/update_docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_docs.yml b/.github/workflows/update_docs.yml index 38f24bcb..d9942248 100644 --- a/.github/workflows/update_docs.yml +++ b/.github/workflows/update_docs.yml @@ -25,14 +25,14 @@ jobs: #define set of jobs. Here there is only one job, each job is instantiated # Step 3: define a step that install dependencies (Sphinx etc) for this runner - name: Install dependencies #name of this step run: | #indicate that following script is meant to be multi-line - pip install sphinx sphinx_rtd_theme myst_parser neuromancer + pip install sphinx sphinx_rtd_theme myst_parser # Step 4: Build docs using sphinx. TZ=UTC needed to circumvent a nuance of running Sphinx on GHA runner - name: Sphinx build run: | cd docs ls - sphinx-build -M html source build + sphinx-build source public -b dirhtml @@ -47,7 +47,7 @@ jobs: #define set of jobs. Here there is only one job, each job is instantiated with: publish_branch: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: build - keep_files: true + publish_dir: public +