reverted back to fallback

This commit is contained in:
Liyu Xiao 2025-08-22 13:11:08 -04:00
parent 145f80849f
commit 6b4e39e5be

View File

@ -35,13 +35,14 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
echo "📦 Installing utils from RIA Hub..." echo "Trying to install utils from RIA Hub..."
pip install --no-cache-dir \ if ! pip install \
--index-url "https://${{ secrets.RIAHUB_USER }}:${{ secrets.RIAHUB_TOKEN }}@git.riahub.ai/api/packages/qoherent/pypi/simple/" \ --index-url "https://${{ secrets.RIAHUB_USER }}:${{ secrets.RIAHUB_TOKEN }}@git.riahub.ai/api/packages/qoherent/pypi/simple/" \
--extra-index-url https://pypi.org/simple/ \ utils; then
utils==0.1.3 echo "RIA Hub install failed, falling back to local wheel..."
pip install ./wheels/utils-*.whl
pip install --no-cache-dir -r requirements.txt fi
pip install -r requirements.txt
- name: 1. Generate Recordings - name: 1. Generate Recordings
run: | run: |