Skip to content

Bump actions/checkout from 6 to 7 (#316) #556

Bump actions/checkout from 6 to 7 (#316)

Bump actions/checkout from 6 to 7 (#316) #556

Workflow file for this run

name: Documentation
on:
push:
paths:
- '.github/workflows/documentation.yml'
- 'Project.toml'
- 'docs/**'
- 'src/**'
branches:
- main
tags: '*'
pull_request:
paths:
- '.github/workflows/documentation.yml'
- 'Project.toml'
- 'docs/**'
- 'src/**'
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
build-docs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
- uses: julia-actions/cache@v3
with:
cache-name: "docs"
- uses: julia-actions/julia-docdeploy@v1
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}