We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1362707 commit 77985c7Copy full SHA for 77985c7
.github/workflows/documentation.yml
@@ -21,10 +21,14 @@ jobs:
21
with:
22
version: '1'
23
- uses: julia-actions/cache@v2
24
+ - name: Install virtual frame buffer
25
+ run: sudo apt-get update && sudo apt-get install -y xvfb
26
- name: Install dependencies
27
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
28
- name: Build and deploy
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
31
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
- run: julia --project=docs/ docs/make.jl
32
+ run: >
33
+ DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24'
34
+ julia --project=docs/ docs/make.jl
0 commit comments