Skip to content
Snippets Groups Projects
Commit 3a41732d authored by Alberto Pianon's avatar Alberto Pianon
Browse files

reduce release field length, removing obvious information


Signed-off-by: default avatarAlberto Pianon <alberto@pianon.eu>
parent 83805cc4
No related branches found
No related tags found
1 merge request!84update a4f for compatibility with Donnie/Oniro4OpenHarmony
Pipeline #65965 failed
......@@ -124,6 +124,10 @@ def aggregate_tags(tags: List[str]) -> Dict[str, Union[List[str], Set[str]]]:
tag = tag.replace(f'{project}-', '')
new.add(tag)
res[key] = sorted(new)
elif Settings.A4F_TAG_SCHEMA == "project/release/board/product/variant":
res["release"] = [
t.replace("OpenHarmony-", "") for t in res["release"]
]
return res
......
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