fix: install the default registries for version > 1.8 (#55)

This commit is contained in:
Venkateshprasad
2024-11-04 17:47:59 +05:30
committed by GitHub
parent d36834d834
commit e3eb439fad

View File

@@ -46,7 +46,12 @@ runs:
if VERSION >= v"1.5-"
Pkg.Registry.add("General")
if VERSION >= v"1.8-"
# Install the default registries
Pkg.Registry.add()
else
Pkg.Registry.add("General")
end
# If provided add local registries
if !isempty("${{ inputs.localregistry }}")