Skip to content

Commit

Permalink
fix NEON_EVM_TAG (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinaNikolaevaa authored Aug 29, 2024
1 parent b2131aa commit 8854d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clickfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8854d29

Please sign in to comment.