Spaces:
Sleeping
Sleeping
| name: π Deploy ke Hugging Face | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Checkout kode (non-shallow) | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # Ambil seluruh history, penting! | |
| - name: π Push ke Hugging Face | |
| run: | | |
| git config --global user.email "action@github.com" | |
| git config --global user.name "GitHub Action" | |
| git remote add hf https://Mandr1:${{ secrets.HF_TOKEN }}@huggingface.co/spaces/Mandr1/Praktekcloud | |
| git push -f hf main | |