Skip to content

Commit

Permalink
fix: install the default registries for version > 1.8 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
ven-k authored Nov 4, 2024
1 parent d36834d commit e3eb439
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}")
Expand Down

0 comments on commit e3eb439

Please sign in to comment.