Browse Source

Fix build docs command

github-actions
Garrit Franke 3 years ago
parent
commit
72b285ce23
  1. 1
      build_docs.py

1
build_docs.py

@ -1,6 +1,7 @@
import subprocess
import os
os.system("mkdir ./book")
os.system("mkdir ./book/latest")
os.system("mdbook build --dest-dir './book/latest'")
tags = subprocess.run(["git", "tag"], stdout=subprocess.PIPE).stdout.decode('utf-8')

Loading…
Cancel
Save