Fixed URLs in the search index file when CLEAN-URLS argument is given. #198
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
{ | |
"name": "DOCS", | |
"on": { | |
"push": { | |
"branches": [ | |
"master" | |
] | |
}, | |
"pull_request": null | |
}, | |
"jobs": { | |
"build-docs": { | |
"runs-on": "ubuntu-latest", | |
"env": { | |
"OS": "ubuntu-latest", | |
"QUICKLISP_DIST": "quicklisp", | |
"LISP": "sbcl-bin" | |
}, | |
"steps": [ | |
{ | |
"name": "Checkout Code", | |
"uses": "actions/checkout@v3" | |
}, | |
{ | |
"name": "Setup Common Lisp Environment", | |
"uses": "40ants/setup-lisp@v3", | |
"with": { | |
"asdf-system": "40ants-doc-full" | |
} | |
}, | |
{ | |
"name": "Build Docs", | |
"uses": "40ants/build-docs@v1", | |
"with": { | |
"asdf-system": "40ants-doc-full", | |
"error-on-warnings": true | |
} | |
} | |
] | |
} | |
} | |
} |