PABPAT/TCI_Shield
0
1name: Deploy to HuggingFace Spaces2 3on:4 push:5 branches:6 - main7 8jobs:9 deploy:10 runs-on: ubuntu-latest11 12 steps:13 - name: Checkout code14 uses: actions/checkout@v415 with:16 fetch-depth: 017 lfs: true18 19 - name: Push to HuggingFace Space20 env:21 HF_TOKEN: ${{ secrets.TCI_SHIELD_HUGGING_FACE }}22 run: |23 git config --global user.email "deploy@github-actions.com"24 git config --global user.name "GitHub Actions"25 git push https://oauth2:$HF_TOKEN@huggingface.co/spaces/PABPAT/TCI_Shield main --force