Skip to content

Commit 074b440

Browse files
author
Stephan Sahm
committed
trying to add custom registry
1 parent ac290e3 commit 074b440

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
with:
2525
version: ${{ matrix.version }}
2626
arch: ${{ matrix.arch }}
27+
- run: |
28+
julia --project=. -e '
29+
using Pkg
30+
pkg"registry add https://github.com/schlichtanders/SchlichtandersJuliaRegistry.jl"
31+
'
2732
- uses: actions/cache@v1
2833
env:
2934
cache-name: cache-artifacts
@@ -48,11 +53,17 @@ jobs:
4853
- uses: julia-actions/setup-julia@v1
4954
with:
5055
version: '1'
56+
- run: |
57+
julia --project=docs -e '
58+
using Pkg
59+
pkg"registry add https://github.com/schlichtanders/SchlichtandersJuliaRegistry.jl"
60+
'
5161
- run: |
5262
julia --project=docs -e '
5363
using Pkg
5464
Pkg.develop(PackageSpec(path=pwd()))
55-
Pkg.instantiate()'
65+
Pkg.instantiate()
66+
'
5667
- run: julia --project=docs docs/make.jl
5768
env:
5869
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)