From c67b993dfcd603a9689c3da16a5ada6d96a093b4 Mon Sep 17 00:00:00 2001 From: Francesco Cheinasso Date: Fri, 25 Aug 2023 11:16:15 +0200 Subject: [PATCH] Docs: liqoctl download fix --- docs/conf.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0bba03116c..c47a0ebe11 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,12 +101,16 @@ # __get_download_url returns the download URL for the given file, for the latest or the given GitHub release. def __get_download_url(file: str) -> str: - if 'current_version' not in html_context or not __is_sem_version(html_context['current_version']): - return f"https://github.com/liqotech/liqo/releases/latest/download/{file}" - else: - return f"https://github.com/liqotech/liqo/releases/download/master/{file}" - + version = generate_version() + if version == 'master': + x = requests.get('https://api.github.com/repos/liqotech/liqo/releases/latest') + version = x.json()['tag_name'] + return f"https://github.com/liqotech/liqo/releases/download/${version}/{file}" + # generate_version generates the version string for the current page. +# latest: return master +# stable: return the latest release (get the last release tag from GitHub API) +# tag: return the tag specified in the html_context[github_version] def generate_version() -> str: version = html_context['github_version'] if 'github_version' in html_context else 'master' if 'current_version' in html_context and html_context['current_version'] == 'stable':