Auto-deploy: 2026-05-17 01:32:28

This commit is contained in:
Hamza-Ayed
2026-05-17 01:32:28 +03:00
parent 8445affc78
commit a433b2f7ae

17
deploy.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
echo "🚀 Starting Deployment..."
# Add all changes
git add .
# Get current date and time
TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S")
# Commit with timestamp
git commit -m "Auto-deploy: $TIMESTAMP"
# Push to origin main
git push origin main
echo "✅ Deployment pushed to Git successfully!"