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