We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de7540 commit 77e2a02Copy full SHA for 77e2a02
src/utils.jl
@@ -20,6 +20,8 @@ Generate the name for the registry branch used to register the package version.
20
function registration_branch(pkg::Project; url::AbstractString)
21
url_hash = bytes2hex(SHA.sha256(url))
22
url_hash_trunc = url_hash[1:10]
23
+ # NOTE: If this format is changed TagBot must be updated
24
+ # https://github.com/JuliaRegistries/TagBot/blob/4e2dfa4ac8ad1e1a0af1e03f8411855200fac8ce/tagbot/action/repo.py#L219
25
return "registrator-$(lowercase(pkg.name))-$(string(pkg.uuid)[1:8])-v$(pkg.version)-$(url_hash_trunc)"
26
end
27
function registration_branch(project_file::AbstractString; url::AbstractString)
0 commit comments