Added workflow to build docs.
This commit is contained in:
parent
6be364e176
commit
2f0ec92b1f
1 changed files with 27 additions and 0 deletions
27
.github/workflows/docs.yml
vendored
Normal file
27
.github/workflows/docs.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: 'Docs'
|
||||
|
||||
on:
|
||||
# This will run tests on pushes
|
||||
# to master branch and every monday:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
- 'master'
|
||||
schedule:
|
||||
- cron: '0 10 * * 1'
|
||||
|
||||
jobs:
|
||||
build-docs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
env:
|
||||
LISP: sbcl-bin
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: 40ants/setup-lisp@v1
|
||||
- uses: 40ants/build-docs@v1
|
||||
with:
|
||||
asdf-system: docs
|
||||
# ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }}
|
||||
|
Loading…
Reference in a new issue