From d00eccb679997b93b9a0d5f666a8501f9238f3be Mon Sep 17 00:00:00 2001 From: Jiri Petrlik Date: Thu, 13 Jul 2023 09:08:56 +0200 Subject: [PATCH] [205] Fix codeflare-sdk release action --- .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 570707391..db952e8e4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -47,7 +47,7 @@ jobs: - name: Run poetry build run: poetry build - name: Create new documentation - run: poetry run pdoc --html -o docs src/codeflare_sdk && pushd docs && rm -rf cluster job utils && mv codeflare_sdk/* . && rm -rf codeflare_sdk && popd + run: poetry run pdoc --html -o docs src/codeflare_sdk && pushd docs && rm -rf cluster job utils && mv codeflare_sdk/* . && rm -rf codeflare_sdk && popd && find docs -type f -name "*.html" -exec bash -c "echo '' >> {}" \; - name: Set Pypi token run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} - name: Publish new release to Pypi repository