diff --git a/index.js b/index.js index 72fcb360..fb1da267 100644 --- a/index.js +++ b/index.js @@ -292,6 +292,9 @@ async function getLatestTag({repo, prefix}) { const tags = []; let assurance = 25; for await (const item of getItemsFromPages(pages)) { + if (item["assets"].length < 3) { + continue; + } const tag = item["tag_name"]; if (!prefix || tag === prefix || tag.startsWith(prefix + ".")) { tags.push(tag);