name: Setup Deployment on: workflow_dispatch jobs: setup: runs-on: ubuntu-latest steps: - name: Instructions run: | echo "📝 Setup GitHub Secrets for automated deployment" echo "" echo "1. Go to: https://github.com/YOUR_REPO/settings/secrets/actions" echo "" echo "2. Add these secrets:" echo " HF_USERNAME = your huggingface username" echo " HF_TOKEN = your HF API token (from https://huggingface.co/settings/tokens)" echo "" echo "3. Once added, any push to 'main' will auto-deploy to HF Spaces!" echo "" echo "After setup, try: git push origin main"