From b2f5ef4b6c893f91ee2c5038ff50649a39d5a3ae Mon Sep 17 00:00:00 2001 From: fjebaker Date: Tue, 1 Oct 2024 22:31:31 +0100 Subject: [PATCH] ci: added Julia General registry It's seems Julia has done that thing where it removes the General registry when you add a new registry. Explicitly add General to resolve the missing packages. --- .github/workflows/docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7b4bf8f5..378d1b25 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -39,6 +39,7 @@ jobs: - name: Build documentation run: | julia -e 'import Pkg; Pkg.Registry.add(Pkg.RegistrySpec(url="https://github.com/astro-group-bristol/AstroRegistry/"))' + julia -e 'import Pkg; Pkg.Registry.add(Pkg.RegistrySpec(url="https://github.com/JuliaRegistries/General"))' julia --project=docs -e ' using Pkg Pkg.add("Plots")