From ae336975376a4f56ccc3dfe53dc2426945d342d2 Mon Sep 17 00:00:00 2001 From: Frank Steiler Date: Mon, 18 Sep 2023 07:05:18 +0000 Subject: [PATCH] Fixing broken path for CLI doc creation --- .github/actions/build/docs/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build/docs/action.yml b/.github/actions/build/docs/action.yml index 2d8b4010..d0e20f02 100644 --- a/.github/actions/build/docs/action.yml +++ b/.github/actions/build/docs/action.yml @@ -22,7 +22,7 @@ runs: run: cp README.md LICENSE ${{ inputs.docs-path }}/${{ steps.get-docs-config.outputs.docs-dir }}/ - id: build-cli-reference shell: bash - run: (cd ${{ inputs.app-path }}; npm run doc:cli -- "${{ inputs.docs-path }}/${{ steps.get-docs-config.outputs.docs-dir }}") + run: (cd ${{ inputs.app-path }}; npm run doc:cli -- "${{ github.workspace }}/${{ inputs.docs-path }}/${{ steps.get-docs-config.outputs.docs-dir }}") - id: build-mkdocs shell: bash run: (cd ${{ inputs.docs-path }}; mkdocs build)