Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Birmiwal committed Mar 28, 2024
1 parent 962a3cb commit 4607937
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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



0 comments on commit 4607937

Please sign in to comment.