Skip to content

Commit

Permalink
Fix Occasional Doc Workflow Error (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsipher authored Oct 14, 2021
1 parent d4c0ab8 commit 6535716
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
with:
version: '1.6' # Build documentation on Julia 1.6
- name: Install plotting dependencies # For enabling GR.jl (used by Plots.jl)
run: sudo apt-get install -y qt5-default
run: |
sudo apt-get update
sudo apt-get install -y qt5-default
- name: Install julia dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Plot friendly RUNCMD # needed to enable Plots.jl correctly
Expand Down

0 comments on commit 6535716

Please sign in to comment.