docs: disable 2D board axes in 3D gallery examples #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: ['*'] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| docs: | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| contents: write | |
| statuses: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - uses: julia-actions/cache@v2 | |
| - name: Configure doc environment | |
| shell: julia --project=docs --color=yes {0} | |
| run: | | |
| using Pkg | |
| # Develop both together so Pkg can resolve cross-dependencies | |
| # Remove JSXGraphRecipesBase URL once it is in General registry | |
| Pkg.develop([ | |
| PackageSpec(path=pwd()), | |
| PackageSpec(url="https://github.com/s-celles/JSXGraphRecipesBase.jl") | |
| ]) | |
| Pkg.instantiate() | |
| - name: Build and deploy documentation | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: julia --project=docs --color=yes -e 'include("docs/make.jl")' |