From 78c17d3c4f357ae9b27b4a2286507daf9860f8f1 Mon Sep 17 00:00:00 2001 From: Peter Njeim Date: Mon, 29 Aug 2022 21:45:19 -0300 Subject: [PATCH] fix: WSA version --- scripts/extractWSA.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/extractWSA.py b/scripts/extractWSA.py index 9da9204..0b4528e 100644 --- a/scripts/extractWSA.py +++ b/scripts/extractWSA.py @@ -49,6 +49,8 @@ with zipfile.ZipFile(wsa_zip_path) as zip: main_ver = ver[0] with open(os.environ['WSA_WORK_ENV'], 'a') as g: g.write(f'WSA_VER={long_ver}\n') + with open(os.environ['GITHUB_ENV'], 'a') as g: + g.write(f'WSA_VER={long_ver}\n') with open(os.environ['WSA_WORK_ENV'], 'a') as g: g.write(f'WSA_MAIN_VER={main_ver}\n') rel = ver_no[3].split(".")