-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow for multi-version sphinx docs (#61)
* add github hash to artifact uploaded by docs build * linkcheck ignore incf website * try pooch-inspired docs deploy workflow * fix indentation error in yaml * editted comment * do not checkout at start of build job * add back the checkout * switch everything to gh-pages test * investigate event_name trigger * change if guard for releases * detect releases by tag presence * V1 of dynamic switcher.json * Update the switcher json to order correctly * V2 dynamic switcher.json * Fixed double quote truncation * Switch stable to latest * Update switcher.json * Final version of multi-version switcher --------- Co-authored-by: IgorTatarnikov <[email protected]>
- Loading branch information
1 parent
1338162
commit 452fe10
Showing
3 changed files
with
161 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
[ | ||
{ | ||
"name": "v0.3.1 (stable)", | ||
"version": "0.3.1", | ||
"url": "https://neuroblueprint.neuroinformatics.dev/" | ||
} | ||
{ | ||
"version": "dev", | ||
"url": "https://neuroblueprint.neuroinformatics.dev/dev/" | ||
}, | ||
{ | ||
"name": "0.3.0 (latest)", | ||
"version": "0.3.0", | ||
"url": "https://neuroblueprint.neuroinformatics.dev/latest/" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters