From e6c1be2281d83942ac0e9486bf914bdd6c0ac61d Mon Sep 17 00:00:00 2001 From: Riccardo Boero Date: Tue, 19 Nov 2024 09:39:24 +0100 Subject: [PATCH] Fix action for package registration. --- .github/workflows/register-julia-package.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/register-julia-package.yml b/.github/workflows/register-julia-package.yml index bb2f39b..386aff1 100644 --- a/.github/workflows/register-julia-package.yml +++ b/.github/workflows/register-julia-package.yml @@ -32,13 +32,13 @@ jobs: julia -e ' using LocalRegistry; LocalRegistry.register( - "julia/PRISMAID", - registry = "OpenRegistry", # Use the name from Registry.toml + package = "julia/PRISMAID", + registry = "https://github.com/open-and-sustainable/julia.git", commit = true, push = true, - branch = "main", - repo = "https://github.com/open-and-sustainable/julia.git" + branch = "main" )' +