Skip to content

Commit 646e300

Browse files
authoredApr 16, 2024··
Revert "(Temporarily) fix stable docs link in README.md" (#253)
* Revert "Fix stable docs link in README.md (#249)" This reverts commit 31016f4. * Update docs configuration
1 parent 228e7c7 commit 646e300

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed
 

‎.github/workflows/DocsPreviewCleanup.yml

+7
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@ on:
44
pull_request:
55
types: [closed]
66

7+
# Ensure that only one "Doc Preview Cleanup" workflow is force pushing at a time
8+
concurrency:
9+
group: doc-preview-cleanup
10+
cancel-in-progress: false
11+
712
jobs:
813
doc-preview-cleanup:
914
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
1017
steps:
1118
- name: Checkout gh-pages branch
1219
uses: actions/checkout@v4

‎.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
docs:
5656
name: Documentation
5757
runs-on: ubuntu-latest
58+
permissions:
59+
contents: write # Required when authenticating with `GITHUB_TOKEN`, not needed when authenticating with SSH deploy keys
60+
pull-requests: read # Required when using `push_preview=true`
61+
statuses: write # Optional, used to report documentation build statuses
5862
steps:
5963
- uses: actions/checkout@v4
6064
- uses: julia-actions/setup-julia@v1

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ReverseDiff
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliadiff.org/ReverseDiff.jl/)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliadiff.org/ReverseDiff.jl/stable)
44
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliadiff.org/ReverseDiff.jl/dev)
55
[![Build status](https://github.com/JuliaDiff/ReverseDiff.jl/workflows/CI/badge.svg)](https://github.com/JuliaDiff/ReverseDiff.jl/actions)
66
[![codecov.io](https://codecov.io/github/JuliaDiff/ReverseDiff.jl/coverage.svg?branch=master)](https://codecov.io/github/JuliaDiff/ReverseDiff.jl?branch=master)

‎docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ makedocs(;
1616
)
1717

1818
deploydocs(;
19-
repo="github.com/JuliaDiff/ReverseDiff.jl", push_preview=true,
19+
repo="github.com/JuliaDiff/ReverseDiff.jl.git", push_preview=true,
2020
)

0 commit comments

Comments
 (0)
Please sign in to comment.