ci: auto-get rockspec mappings for rock name => github short url or url

This commit is contained in:
Folke Lemaitre 2024-06-25 17:41:14 +02:00
parent 2ca68f9979
commit b6eba0d026
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
7 changed files with 117405 additions and 1 deletions

View file

@ -9,6 +9,7 @@ local M = {}
---@field patch number
---@field prerelease? string
---@field build? string
---@field input? string
local Semver = {}
Semver.__index = Semver
@ -90,6 +91,7 @@ function M.version(version)
patch = patch == "" and 0 or tonumber(patch),
prerelease = prerelease ~= "" and prerelease or nil,
build = build ~= "" and build or nil,
input = version,
}, Semver)
end
end