Skip to content

Commit

Permalink
Add packages in workflow context
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuRoule committed Nov 30, 2023
1 parent 38f632c commit f672193
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
with:
version: '1.6'
- 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.add(url="https://github.com/JuliaStellarDynamics/AstroBasis.jl.git");
Pkg.add(url="https://github.com/JuliaStellarDynamics/FiniteHilbertTransform.jl.git");
Pkg.add(url="https://github.com/JuliaStellarDynamics/OrbitalElements.jl.git");
Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
Expand Down

0 comments on commit f672193

Please sign in to comment.