52 lines
1.6 KiB
Bash
Executable file
52 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Usage: publish-links.sh [vps-host] [branch]
|
|
# Can be called from any directory — no dependency on the repo being the working dir.
|
|
set -euo pipefail
|
|
|
|
VAULT_LINKS='/Users/adrian/Obsidian/Web/adrian-altner-com/content/links'
|
|
VPS="${1:-hetzner}"
|
|
REMOTE_BRANCH="${2:-main}"
|
|
|
|
REMOTE_BASE='/opt/websites/www.adrian-altner.com'
|
|
REMOTE_LINKS="${REMOTE_BASE}/src/content/links"
|
|
|
|
# --- 1. Sync vault to VPS ---
|
|
ssh "$VPS" "
|
|
set -euo pipefail
|
|
cd '$REMOTE_BASE'
|
|
git fetch --prune origin '$REMOTE_BRANCH'
|
|
git checkout '$REMOTE_BRANCH'
|
|
git reset --hard 'origin/$REMOTE_BRANCH'
|
|
git clean -fd -e .env -e .env.production
|
|
mkdir -p '$REMOTE_LINKS'
|
|
"
|
|
|
|
rsync -az --delete \
|
|
--include='*/' \
|
|
--include='*.md' \
|
|
--include='*.mdx' \
|
|
--exclude='.DS_Store' \
|
|
--exclude='*' \
|
|
"$VAULT_LINKS/" "$VPS:$REMOTE_LINKS/"
|
|
|
|
# --- 2. Build + cleanup ---
|
|
ssh "$VPS" "
|
|
set -euo pipefail
|
|
cd '$REMOTE_BASE'
|
|
podman-compose -f compose.yml up --build -d --force-recreate
|
|
podman image prune -af
|
|
podman builder prune -af
|
|
"
|
|
|
|
echo "Links deploy done via $VPS (branch: $REMOTE_BRANCH)."
|
|
|
|
# --- 3. Webmentions ---
|
|
WEBMENTION_APP_TOKEN="$(ssh "$VPS" "grep '^WEBMENTION_APP_TOKEN=' '$REMOTE_BASE/.env.production' | cut -d= -f2-" 2>/dev/null || true)"
|
|
if [[ -n "$WEBMENTION_APP_TOKEN" ]]; then
|
|
echo "Sending webmentions..."
|
|
curl -s -X POST "https://webmention.app/check?url=https://adrian-altner.com/rss/links.xml&token=${WEBMENTION_APP_TOKEN}" \
|
|
| grep -o '"status":"[^"]*"' || true
|
|
echo "Webmentions triggered."
|
|
else
|
|
echo "No WEBMENTION_APP_TOKEN in .env.production — skipping webmentions."
|
|
fi
|