mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-01-07 15:09:09 +00:00
fix: strip leading version of tag names in finding new releases
This commit is contained in:
parent
d219a8b668
commit
e6068b2ef6
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ for _, binSrc in pathfs.readDir(BINS_SRC_DIR) do
|
|||
local releasesAfter = {}
|
||||
local versionIdx = math.huge
|
||||
for idx, release in releases do
|
||||
if release.tag_name == version then
|
||||
if stripLeadingVersion(release.tag_name) == version then
|
||||
versionIdx = idx
|
||||
continue
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue