Skip to content

Commit fa3e136

Browse files
committed
Add the HolyLabRegistry for QuadDIRECT
1 parent cb0a929 commit fa3e136

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/Documentation.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- master
7-
tags: '*'
7+
tags: "*"
88
pull_request:
99

1010
jobs:
@@ -14,9 +14,11 @@ jobs:
1414
- uses: actions/checkout@v6
1515
- uses: julia-actions/setup-julia@latest
1616
with:
17-
version: '1'
17+
version: "1"
18+
- name: Add the HolyLabRegistry
19+
run: julia --project -e 'using Pkg; Pkg.Registry.add(); Pkg.Registry.add(RegistrySpec(url = "https://github.com/HolyLab/HolyLabRegistry.git"))'
1820
- name: Install dependencies
19-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(vcat(PackageSpec(path = pwd()), [PackageSpec(path = joinpath("lib", dir)) for dir in readdir("lib") if (dir !== "OptimizationQuadDIRECT" && dir !== "OptimizationMultistartOptimization")])); Pkg.instantiate()'
21+
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(vcat(PackageSpec(path = pwd()), [PackageSpec(path = joinpath("lib", dir)) for dir in readdir("lib") if (dir !== "OptimizationMultistartOptimization")])); Pkg.instantiate()'
2022
- name: Build and deploy
2123
env:
2224
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token

0 commit comments

Comments
 (0)