You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/entrypoint.py", line 22, in <module>
action.build_all_docs(github_env, sys.argv[1:])
File "/sphinx_action/action.py", line 124, in build_all_docs
return_code, annotations = build_docs(docs_dir)
File "/sphinx_action/action.py", line 99, in build_docs
with open(log_file, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/sphinx-log'
##[error]Docker run failed with exit code 1
It took me a while, but I found out that the real error is a few lines further up:
make: *** No rule to make target 'html'. Stop.
I'm not using a Makefile in my project (because I don't like it, see e.g. sphinx-doc/sphinx#5618).
It would be great to support workflows without Makefile.
For example, https://readthedocs.org/ doesn't require having a Makefile; they somehow automagically find a conf.py and start Sphinx from there, without needing a Makefile.
The text was updated successfully, but these errors were encountered:
I've just tried
sphinx-action
and got this error:It took me a while, but I found out that the real error is a few lines further up:
I'm not using a
Makefile
in my project (because I don't like it, see e.g. sphinx-doc/sphinx#5618).It would be great to support workflows without
Makefile
.For example, https://readthedocs.org/ doesn't require having a
Makefile
; they somehow automagically find aconf.py
and start Sphinx from there, without needing aMakefile
.The text was updated successfully, but these errors were encountered: