From 5264d5341f4c3ca617673ee8cc5ab106e2f6a1ce Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 9 Oct 2023 22:42:38 +0800 Subject: [PATCH] limit sync count --- scripts/build_artifacts.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_artifacts.lua b/scripts/build_artifacts.lua index 69438e220..fb988d314 100644 --- a/scripts/build_artifacts.lua +++ b/scripts/build_artifacts.lua @@ -145,7 +145,7 @@ function _get_packagerefs_in_latest_24h() end local result = {} for _, packageref in packagerefs:keys() do - if #result < 64 then + if #result < 24 then table.insert(result, packageref) end end