Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions DocumentGenerator/DocumentGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,10 +364,9 @@ def complete_yaml_creation(self):
try:
# unless DOCS_REPO_URL is changed the documentation will be deployed in this location:
# https://webplatformforembedded.github.io/ServicesInterfaceDocumentation/
commands = ["mike", "deploy", branch_name, "-p"]
commands = ["mike", "deploy", "--push", branch_name]
if tag:
cmd = tag, "-u"
commands.extend(cmd)
commands.extend(["--update-aliases", tag])

os.chdir(docs_path)
ret_val = subprocess.run(commands)
Expand Down
Loading