Files
cv/deploy.sh
2026-05-17 01:32:28 +03:00

18 lines
305 B
Bash
Executable File

#!/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!"