tts-service / .github /workflows /update_space.yml
Jesus Lopez
feat: applio
a8c39f5
raw
history blame
689 Bytes
name: Run Python script
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "poetry"
- name: Deploy
run: |-
pipx inject poetry poetry-plugin-export
poetry export --only=main,ml,ui,audio,misc >requirements.txt
poetry install --only=ci --no-root -q
PATH=$(poetry env info --path)/bin:$PATH
huggingface-cli login --token ${{ secrets.hf_token }}
gradio deploy