diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..14b21d6 --- /dev/null +++ b/deploy.sh @@ -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!"