Skip to content

Commit

Permalink
fix docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Apr 4, 2024
1 parent 81581ac commit 0e9e5fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ jobs:
run: python -m pip install ${{ inputs.package_dir }}/

- name: Download ffi
run: "[[ ${{ inputs.package_name }} = 'livekit.rtc' ]] && pip install requests && python livekit-rtc/rust-sdks/download_ffi.py --output $(python -m site --user-site)/livekit/rtc/resources"
run: |
if [[ ${{ inputs.package_name }} = 'livekit.rtc' ]]; then
pip install requests
python livekit-rtc/rust-sdks/download_ffi.py --output $(python -m site --user-site)/livekit/rtc/resources
fi
- name: Install pdoc
run: pip install --upgrade pdoc
Expand Down

0 comments on commit 0e9e5fb

Please sign in to comment.