tmdeptrai3012's picture
deploy 2025-08-08 09:57:49
0a9d3ef verified
raw
history blame contribute delete
772 Bytes
name: Continuous Deployment
on:
workflow_run:
workflows: ["Continuous Integration"]
types:
- completed
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to Hugging Face
env:
HF: ${{secrets.HF}}
run: |
pip install -U "huggingface_hub[cli]"
huggingface-cli login --token "$HF" --add-to-git-credential
- name: Push to Hugging Face Space
run: |
huggingface-cli upload tmdeptrai3012/LegalContractAnalyzer . --repo-type=space --commit-message="deploy $(date +'%Y-%m-%d %H:%M:%S')"