added secrets

This commit is contained in:
Liyu Xiao 2025-06-17 15:45:26 -04:00
parent 0ca790b8ba
commit 39f8a53fdc

View File

@ -11,7 +11,9 @@ on:
jobs: jobs:
ria-demo: ria-demo:
runs-on: ubuntu-latest-2080 runs-on: ubuntu-latest-2080
env:
RIAGIT_USERNAME: ${{ secrets.USERNAME }}
RIAGIT_TOKEN: ${{ secrets.TOKEN }}
steps: steps:
- name: Print GPU information - name: Print GPU information
run: | run: |
@ -35,7 +37,10 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt \
--extra-index-url https://${RIAGIT_USERNAME}:${RIAGIT_TOKEN}@git.riahub.ai/api/packages/qoherent/pypi/simple/ \
--no-input
- name: 1. Generate Recordings - name: 1. Generate Recordings
run: | run: |