Skip to content

Commit

Permalink
Update dependencies for documentation compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
THinnerichs committed Jan 19, 2024
1 parent 4b3eb8a commit 9fc944f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ jobs:
with:
version: '1.8'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
run: julia --project=docs/ -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.develop("HerbCore")
Pkg.develop("HerbGrammar")
Pkg.develop("HerbData")
Pkg.develop("HerbInterpret")
Pkg.develop("HerbConstraints")
Pkg.develop("HerbSearch")
Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
Expand Down

0 comments on commit 9fc944f

Please sign in to comment.