Skip to content

Commit 2b4345e

Browse files
committed
:octocat:
1 parent 9680e59 commit 2b4345e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
- name: "Build manual"
142142
run: |
143143
cd docs
144-
make
144+
make html
145145
146146
- name: "Publish user manual to branch readthedocs"
147147
uses: JamesIves/github-pages-deploy-action@v4

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
from subprocess import Popen, PIPE
1616

1717
def get_version():
18-
if os.environ.get('READTHEDOCS') == True:
18+
if os.environ.get('READTHEDOCS') == 'True':
1919
return os.environ.get('READTHEDOCS_VERSION')
2020

21-
if os.environ.get('GITHUB_ACTIONS') == True:
21+
if os.environ.get('GITHUB_ACTIONS') == 'True':
2222
return os.environ.get('GITHUB_REF_NAME')
2323

2424
grep = 'git branch | findstr \*' if platform.system() == 'Windows' else 'git branch | grep \*'

0 commit comments

Comments
 (0)