Skip to content

Merge pull request #78 from nichollsh/hn/citation #92

Merge pull request #78 from nichollsh/hn/citation

Merge pull request #78 from nichollsh/hn/citation #92

Workflow file for this run

# This job updates the documentation and pushes it to GitHub pages
# This occurs when a PR to main is merged
name: Docs
on:
push:
branches: [main]
paths:
- docs/src/**
- docs/make.jl
- docs/Project.toml
- .github/workflows/documentation.yml
jobs:
build:
permissions:
contents: write
pull-requests: read
statuses: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- uses: julia-actions/cache@v1
- name: Install dependencies
run: julia -e 'using Pkg; Pkg.add("Documenter"); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
run: julia docs/make.jl