xarical/nginx-template
0
1name: Deploy to HF Space2on:3 push:4 branches: [main]5 6 # to run this workflow manually from the Actions tab7 workflow_dispatch:8 9jobs:10 deploy-to-space:11 runs-on: ubuntu-latest12 steps:13 - uses: actions/checkout@v314 with:15 fetch-depth: 016 lfs: true17 - name: Push to HF space18 env:19 HF_API_KEY: ${{ secrets.HF_API_KEY }}20 SPACE_ID: ${{ secrets.SPACE_ID }}21 run: git push https://xarical:$HF_API_KEY@huggingface.co/spaces/$SPACE_ID main22 