From a433b2f7aeb99b06e8c62db7caa06069aab38860 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Sun, 17 May 2026 01:32:28 +0300 Subject: [PATCH] Auto-deploy: 2026-05-17 01:32:28 --- deploy.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 deploy.sh 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!"