smiley 2 سال پیش
والد
کامیت
2b4345e58c
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      .github/workflows/ci.yml
  2. 2 2
      docs/conf.py

+ 1 - 1
.github/workflows/ci.yml

@@ -141,7 +141,7 @@ jobs:
       - name: "Build manual"
         run: |
           cd docs
-          make
+          make html
 
       - name: "Publish user manual to branch readthedocs"
         uses: JamesIves/github-pages-deploy-action@v4

+ 2 - 2
docs/conf.py

@@ -15,10 +15,10 @@ import sys
 from subprocess import Popen, PIPE
 
 def get_version():
-    if os.environ.get('READTHEDOCS') == True:
+    if os.environ.get('READTHEDOCS') == 'True':
         return os.environ.get('READTHEDOCS_VERSION')
 
-    if os.environ.get('GITHUB_ACTIONS') == True:
+    if os.environ.get('GITHUB_ACTIONS') == 'True':
         return os.environ.get('GITHUB_REF_NAME')
 
     grep = 'git branch | findstr \*' if platform.system() == 'Windows' else 'git branch | grep \*'