-
Notifications
You must be signed in to change notification settings - Fork 123
42 lines (39 loc) · 1.02 KB
/
documentation.yaml
File metadata and controls
42 lines (39 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Documentation
on:
push:
branches: "master"
tags: ["*"]
paths:
- '.github/workflows/documentation.yaml'
- 'src/**'
- 'docs/**'
- 'Project.toml'
pull_request:
paths:
- '.github/workflows/documentation.yaml'
- 'src/**'
- 'docs/**'
- 'Project.toml'
release:
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:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: 1
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-docdeploy@v1
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- uses: actions/upload-artifact@v6
with:
name: documentation-build
path: docs/build
retention-days: 90