Skip to content
Snippets Groups Projects
Verified Commit 46039e4f authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Also publish a file containing the latest release

parent 60758358
No related branches found
No related tags found
No related merge requests found
......@@ -3,3 +3,4 @@
python -m sphinx . $BUILD_PATH
TARGET_PATH="$BUILD_PATH/swagger" ./build_swagger.sh
python ./get-releases-json.py > $BUILD_PATH/releases.json
python ./get-releases-json.py --latest > $BUILD_PATH/latest
import argparse
import json
import subprocess
......@@ -32,11 +33,26 @@ def get_versions():
return sorted(valid, key=lambda tag: StrictVersion(tag["id"]), reverse=True)
def main():
def main(latest=False):
versions = get_versions()
data = {"count": len(versions), "releases": versions}
print(json.dumps(data))
if latest:
print(versions[0]["id"])
else:
data = {"count": len(versions), "releases": versions}
print(json.dumps(data, sort_keys=True, indent=2))
if __name__ == "__main__":
main()
parser = argparse.ArgumentParser(
"""
Compile release data and output in in JSON format
"""
)
parser.add_argument(
"-l",
"--latest",
action="store_true",
help="Only print the latest version then exit",
)
args = parser.parse_args()
main(latest=args.latest)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment