added script for automaticly uploading a files

This commit is contained in:
Dejan Rožič 2025-11-22 14:06:50 +01:00
parent 603be07669
commit daaf9f9759

View file

@ -33,3 +33,12 @@ git push
cd /home/dejan/Dokumenti/Forgeo
curl -L "https://cloud.rozic-dev.com/s/shCCG1ZIsHBaiPX/download" -o model.step
#!/bin/bash
# save as push-step.sh and run in your repo folder
git lfs track "*.step" "*.stp" 2>/dev/null || true
git add .gitattributes *.step *.stp
git commit -m "Update STEP models $(date +%F)"
git push
echo "STEP files pushed with LFS!"