Skip to content

Removed paths filter. #236

Removed paths filter.

Removed paths filter. #236

Workflow file for this run

{
"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@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "40ants-doc-full",
"cache": "false"
}
},
{
"name": "Build Docs",
"uses": "40ants/build-docs@v1",
"with": {
"asdf-system": "40ants-doc-full",
"error-on-warnings": true
},
"env": {
"GITHUB_ACTOR": "svetlyak40wt",
"GITHUB_TOKEN": "${{ secrets.RELEASE_TOKEN }}"
}
}
]
}
}
}