From 8854d2942da935d10b348414aa20f510366a3365 Mon Sep 17 00:00:00 2001 From: Kristina Nikolaeva <112946046+kristinaNikolaevaa@users.noreply.github.com> Date: Thu, 29 Aug 2024 12:29:29 +0200 Subject: [PATCH] fix NEON_EVM_TAG (#415) --- clickfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clickfile.py b/clickfile.py index 8e3c9ed534..e122dd113e 100755 --- a/clickfile.py +++ b/clickfile.py @@ -454,7 +454,7 @@ def get_evm_pinned_version(branch): raise click.ClickException(f"Can't get pipeline file for branch {branch}") info = resp.json() pipeline_file = yaml.safe_load(requests.get(info["download_url"]).text) - tag = pipeline_file["env"]["NEON_EVM_TAG"] + tag = pipeline_file["env"]["DEFAULT_NEON_EVM_TAG"] if tag == "latest": return "develop" if re.match(r"[vt]{1}\d{1,2}\.\d{1,2}.*", tag) is not None: