From 0abcb2fd5e8c83b16045c3e623183d5dca2af32c Mon Sep 17 00:00:00 2001 From: jykr Date: Sat, 30 Mar 2024 00:12:21 -0400 Subject: [PATCH] try different working directory --- .github/workflows/documentation.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index cb692a6..ea13754 100755 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -17,9 +17,10 @@ jobs: pip install sphinx sphinx_markdown_builder sphinx_rtd_theme sphinx-argparse m2r pandas bio sudo apt-get install python3-distutils - name: Build Documentation - run: cd "$GITHUB_WORKSPACE/docs" && sphinx-build . _build + working-directory: $GITHUB_WORKSPACE/docs + run: sphinx-build . _build - uses: actions/upload-artifact@v3 with: name: Documentation - path: "$GITHUB_WORKSPACE/_build/" + path: $GITHUB_WORKSPACE/docs/_build/