sdetProfile/deploy/update.sh
Builder 4241129d94 Update portfolio content, resume, and add deploy scripts
- Location/work auth updates across data, HTML, and app
- Swap resume PDF to DobkinResume26
- Refresh experience bullets, projects, and skills
- Add deploy/ with Caddyfile snippet, LXC setup, and update scripts

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-12 16:15:10 -04:00

12 lines
221 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
SITE_DIR="/var/www/portfolio"
cd "$SITE_DIR"
git fetch origin
git reset --hard origin/master
chown -R www-data:www-data "$SITE_DIR"
echo "Updated to $(git rev-parse --short HEAD)"