From d0ff2dbfb4d6d8ccf3ab9e80e59695faa63cc1c9 Mon Sep 17 00:00:00 2001 From: Neil Dwyer Date: Fri, 12 Jan 2024 11:15:04 -0800 Subject: [PATCH] build wheel --- .github/workflows/build-docs.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index c6fdbc1e..1fadd9f0 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -48,6 +48,9 @@ jobs: - name: Install pdoc run: python -m pip install --upgrade pdoc + - name: Install cibuildwheel + run: python -m pip install cibuildwheel + - name: Build Wheel run: python -m cibuildwheel --output-dir dist --platform linux ./$ {{ inputs.package_dir }}} @@ -58,7 +61,7 @@ jobs: run: python -m pip install dist/*.whl - name: Build Docs - run: source venv/bin/activate && python -m pdoc ${{ inputs.package_name }} --docformat=google --output-dir docs + run: python -m pdoc ${{ inputs.package_name }} --docformat=google --output-dir docs - name: S3 Upload run: aws s3 cp docs/ s3://livekit-docs/${{ inputs.package_dir }} --recursive