mirror of
https://github.com/truenas/charts.git
synced 2026-04-05 11:48:55 +08:00
Filter out non-stable releases for emby
This commit is contained in:
@@ -1,13 +1,20 @@
|
||||
#!/usr/bin/python3
|
||||
import json
|
||||
import re
|
||||
import sys
|
||||
|
||||
from catalog_update.upgrade_strategy import semantic_versioning
|
||||
|
||||
|
||||
RE_STABLE_VERSION = re.compile(r'\d+.\d+.\d+.\d+')
|
||||
|
||||
|
||||
def newer_mapping(image_tags):
|
||||
key = list(image_tags.keys())[0]
|
||||
version = semantic_versioning(sorted(image_tags[key], reverse=True))
|
||||
version = semantic_versioning(sorted(
|
||||
[tag for tag in image_tags[key] if RE_STABLE_VERSION.fullmatch(tag) and tag.split('.')[2] != '0'],
|
||||
reverse=True
|
||||
))
|
||||
if not version:
|
||||
return {}
|
||||
|
||||
Reference in New Issue
Block a user