CompatHelper: add new compat entry for DocumenterInterLinks at version 0.3 for package docs, (keep existing compat) #1
This file contains 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: Documenter | |
on: | |
push: | |
branches: [master] | |
tags: [v*] | |
pull_request: | |
jobs: | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: "1.3.353" | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: "1.10" | |
- name: Julia Cache | |
uses: julia-actions/cache@v1 | |
- name: Cache Quarto | |
id: cache-quarto | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-quarto | |
with: | |
path: examples/_freeze | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('examples/*.qmd') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}- | |
- name: Cache Documenter | |
id: cache-documenter | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-documenter | |
with: | |
path: docs/src/examples | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('exampleså/*.qmd') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}- | |
- name: Cache CondaPkg | |
id: cache-condaPkg | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-condapkg | |
with: | |
path: docs/.CondaPkg | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('docs/CondaPkg.toml') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}- | |
- name: "Documenter rendering (including Quarto)" | |
run: "docs/make.jl --quarto --prettyurls" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |