From 3cf39de3212afb7942501a45268876b3f4662af3 Mon Sep 17 00:00:00 2001 From: Christopher Renaud Oelerich Date: Fri, 2 Feb 2024 15:30:43 -0600 Subject: [PATCH] build script update --- .github/workflows/foundry_release.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/foundry_release.py b/.github/workflows/foundry_release.py index 0b43b2b..adbe478 100644 --- a/.github/workflows/foundry_release.py +++ b/.github/workflows/foundry_release.py @@ -31,9 +31,10 @@ def push_release(module_json: dict) -> None: body=json.dumps({ 'id': module_json['id'], 'release': { - **module_json, + 'version': module_json['version'], 'manifest': f"{module_json['url']}/releases/download/{module_json['version']}/module.json", - 'notes': f"{module_json['url']}/releases/tag/{module_json['version']}" + 'notes': f"{module_json['url']}/releases/tag/{module_json['version']}", + 'compatability': module_json['compatability'] } }) )