Skip to content

Commit c559dd1

Browse files
authored
Fix Documenter CI (#394)
* Fix Documenter CI Switches Documenter CI from Julia nightly to 1.10 Avoid the issue in: julia-actions/GitHubActions.jl#34 * set permissions
1 parent cc2b0b9 commit c559dd1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/Documenter.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Documenter
2+
23
on:
34
push:
45
branches: [master]
@@ -7,13 +8,17 @@ on:
78

89
jobs:
910
Documenter:
11+
permissions:
12+
contents: write
13+
pull-requests: read
14+
statuses: write
1015
name: Documentation
1116
runs-on: ubuntu-latest
1217
steps:
1318
- uses: actions/checkout@v4
1419
- uses: julia-actions/setup-julia@v2
1520
with:
16-
version: nightly # change this to 1.6 once's that's official
21+
version: '1.10'
1722
show-versioninfo: true # this causes versioninfo to be printed to the action log
1823
- uses: julia-actions/julia-buildpkg@latest
1924
- uses: julia-actions/julia-docdeploy@latest

0 commit comments

Comments
 (0)