From 2f0ec92b1fe42207ed99f349ea8ef38e6cd01098 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Mon, 15 Feb 2021 23:37:05 +0300 Subject: [PATCH] Added workflow to build docs. --- .github/workflows/docs.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..048b7de --- /dev/null +++ b/.github/workflows/docs.yml @@ -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 }} +