From 6e528369a4af1285ba1839312b8ae5904114f36e Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sat, 6 Feb 2021 12:59:05 +0300 Subject: [PATCH] Updated docs builder yaml. --- .github/actions/build-docs/action.yml | 14 +++++++++++--- .github/workflows/docs.yml | 3 +++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 407b1ff..c9dcab8 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -11,6 +11,14 @@ inputs: runs: using: composite steps: - - uses: 40ants/cl-info/.github/actions/setup-lisp@custom-action - with: - asdf-system: cl-info + - name: Install Documentation Builder + shell: bash + run: | + echo ::group::Install Documentation Builder + qlot exec ros install 40ants/docs-builder + echo ::endgroup:: + + - name: Build Docs + shell: bash + run: | + docs-builder ${{ inputs.asdf-system }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index db0f14f..4d88698 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,6 +23,9 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: 40ants/cl-info/.github/actions/setup-lisp@custom-action + with: + asdf-system: cl-info - uses: 40ants/cl-info/.github/actions/build-docs@custom-action with: asdf-system: cl-info