Skip to content

Commit 8cbd52a

Browse files
committed
CI: add Documenter workflow to release-0.18 branch
1 parent e8ce846 commit 8cbd52a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/Documenter.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Documenter
2+
on:
3+
push:
4+
branches: [main, master]
5+
tags: [v*]
6+
pull_request:
7+
8+
jobs:
9+
Documenter:
10+
permissions:
11+
contents: write
12+
statuses: write
13+
name: Documentation
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: julia-actions/setup-julia@v2
18+
with:
19+
version: '1' # replace this with whatever version you need
20+
show-versioninfo: true # this causes versioninfo to be printed to the action log
21+
- uses: julia-actions/cache@v2 # cache using https://github.com/julia-actions/cache
22+
- uses: julia-actions/julia-buildpkg@v1 # if package requires Pkg.build()
23+
- uses: julia-actions/julia-docdeploy@v1
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)