Skip to content

Bump codecov/codecov-action from 4 to 5 #21

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #21

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
documentation:
name: Documentation
runs-on: ubuntu-latest
permissions:
actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: 'pre' # Get access to the [sources] feature
- uses: julia-actions/cache@v2
- name: Configure doc environment
run: julia --color=yes --project=docs -e 'using Pkg; Pkg.instantiate()'
- uses: julia-actions/julia-docdeploy@v1
with:
install-package: false
# prefix: xvfb-run # for GLMakie
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}