Fix running sphinx-build on GitHub Actions

For some reason I thought it wasn't in the PATH, and specifying the
Python version in the path changed when the default version of Python
changed.
This commit is contained in:
Oliver Hamlet
2020-08-28 15:30:31 +01:00
parent d8c9b9839a
commit c93b9815e5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ jobs:
python -m pip install -r docs/requirements.txt
- name: Build docs
run: ${{ runner.tool_cache }}\Python\3.7.8\x64\Scripts\sphinx-build -b html docs build\docs\html
run: sphinx-build -b html docs build\docs\html
- name: Build archive
id: build-archive
+1 -1
View File
@@ -101,7 +101,7 @@ jobs:
python -m pip install -r docs/requirements.txt
- name: Build docs
run: ${{ runner.tool_cache }}\Python\3.7.8\x64\Scripts\sphinx-build -b html docs build\docs\html
run: sphinx-build -b html docs build\docs\html
- name: Build archive
id: build-archive