From 650b9c1811c07d002075cb97828a4962ce3e45cf Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Thu, 8 Jun 2023 10:58:06 -0400 Subject: [PATCH] #244 luadoc actions fixes --- .github/workflows/pages.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 289a7ab..4121e65 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -51,14 +51,15 @@ jobs: - name: Save main's manifest if: ${{ (success() || failure()) && steps.manifest-main.outcome == 'success' }} run: mv install_manifest.json deploy/manifests/main - - name: Switch to deploy directory - if: success() || failure() - shell: bash - run: cd deploy - name: Generate LuaDoc + if: success() || failure() uses: lunarmodules/ldoc@v1.5.0 with: - args: ../coordinator ../graphics ../pocket ../reactor-plc ../rtu ../scada-common ../supervisor + args: ./coordinator ./graphics ./pocket ./reactor-plc ./rtu ./scada-common ./supervisor + - name: Save doc directory + if: success() || failure() + shell: bash + run: mv doc deploy/ # Generate manifest for latest branch - name: Checkout latest id: checkout-latest