Skip to content

Docs: reduce to single install & build step #3

Docs: reduce to single install & build step

Docs: reduce to single install & build step #3

Workflow file for this run

# Modified from: https://documenter.juliadocs.org/stable/man/hosting/
name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
build:
permissions:
contents: write
statuses: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1.10'
- name: Install dependencies, build, and deploy
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
run: cd docs/ && julia --project=. -e 'using Pkg; Pkg.instantiate()' && julia --project=. make.jl