From 217c8ee4e1c923ccfe131ccc22e21fd750d2f03a Mon Sep 17 00:00:00 2001 From: Bobbins228 Date: Fri, 26 Jul 2024 16:48:58 +0100 Subject: [PATCH] Fixed copy demo notebooks in automated documentation --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 641a148d0..15063f23a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -53,7 +53,7 @@ jobs: - name: Create new documentation run: poetry run pdoc --html -o docs/detailed-documentation src/codeflare_sdk && pushd docs/detailed-documentation && rm -rf cluster job utils && mv codeflare_sdk/* . && rm -rf codeflare_sdk && popd && find docs/detailed-documentation -type f -name "*.html" -exec bash -c "echo '' >> {}" \; - name: Copy demo notebooks into SDK package - run: cp demo-notebooks src/codeflare_sdk/demo-notebooks + run: cp -r demo-notebooks src/codeflare_sdk/demo-notebooks - name: Run poetry build run: poetry build - name: Commit changes in docs