File size: 995 Bytes
f747401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
echo Running Deployment Sequence...

echo ------------------------------------------
echo Step 1: Pushing to GitHub Main
echo ------------------------------------------
git add .
git commit -m "style: final flake8 line wrap fixes"
git push origin main

echo ------------------------------------------
echo Step 2: Creating Clean Hugging Face Deployment
echo ------------------------------------------
git checkout --orphan hf-deploy-final
git rm -rf --cached .
git add .
git commit -m "Deploy Final - Flawless SDK"

echo ------------------------------------------
echo Step 3: Pushing to Hugging Face
echo ------------------------------------------
git push -uf hf hf-deploy-final:main

echo ------------------------------------------
echo Step 4: Returning to Main Branch
echo ------------------------------------------
git checkout main

echo ------------------------------------------
echo All deployments perfectly successful!
echo ------------------------------------------
pause