From bca09ec26d2cc52ddb83432e2f9d6513f952ad54 Mon Sep 17 00:00:00 2001 From: Karl Preisner Date: Tue, 19 Dec 2023 18:33:55 -0600 Subject: [PATCH] try to fix build action --- .github/workflows/docs.yml | 4 ++-- build-docs.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 14ac8d3..4a28129 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,11 +13,11 @@ jobs: python-version: 3.x - run: | pip install lazydocs mkdocs mkdocs-awesome-pages-plugin - - run: ./build-docs.sh + - run: pwd; ./build-docs.sh - name: 'Save Generated Markdown' uses: actions/upload-artifact@v3 with: name: generated_docs - path: docs/docstrings/sindri.jsx.md + path: ./docs/docstrings/sindri.jsx.md retention-days: 90 \ No newline at end of file diff --git a/build-docs.sh b/build-docs.sh index 4145453..afe8814 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -8,6 +8,7 @@ lazydocs \ --output-path="./docs/docstrings" \ --overview-file="README.md" \ --src-base-url="https://github.com/Sindri-Labs/sindri-python/blob/main/" \ + --no-watermark \ src/sindri_labs mkdocs build