From 309637874879a7bf2818e68b6a1f81ef8a17d86e Mon Sep 17 00:00:00 2001 From: Till JS Date: Wed, 11 Mar 2026 11:57:56 +0100 Subject: [PATCH] fix(ci): correct Mac Mini username from till to mana Co-Authored-By: Claude Opus 4.6 --- .github/workflows/cd-macmini.yml | 2 +- docs/MAC_MINI_RUNNER_SETUP.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd-macmini.yml b/.github/workflows/cd-macmini.yml index bba71caf2..5390feb9c 100644 --- a/.github/workflows/cd-macmini.yml +++ b/.github/workflows/cd-macmini.yml @@ -43,7 +43,7 @@ concurrency: cancel-in-progress: false # Don't cancel in-progress deploys env: - PROJECT_DIR: /Users/till/projects/manacore-monorepo + PROJECT_DIR: /Users/mana/projects/manacore-monorepo COMPOSE_FILE: docker-compose.macmini.yml ENV_FILE: .env.macmini diff --git a/docs/MAC_MINI_RUNNER_SETUP.md b/docs/MAC_MINI_RUNNER_SETUP.md index 15ecda57a..31a55bb37 100644 --- a/docs/MAC_MINI_RUNNER_SETUP.md +++ b/docs/MAC_MINI_RUNNER_SETUP.md @@ -34,7 +34,7 @@ chmod 600 ~/.ssh/authorized_keys ### A3. Verbindung testen (vom Entwicklungsrechner) ```bash -ssh till@192.168.178.131 "echo 'SSH works!'" +ssh mana@192.168.178.131 "echo 'SSH works!'" ``` ### A4. SSH-Config auf dem Entwicklungsrechner @@ -45,12 +45,12 @@ Falls noch nicht vorhanden, `~/.ssh/config` erstellen/ergänzen: # Lokales Netzwerk (direkt) Host mana-server HostName 192.168.178.131 - User till + User mana # Über Cloudflare Tunnel (von extern) Host mana-server-remote HostName mac-mini.mana.how - User till + User mana ProxyCommand /opt/homebrew/bin/cloudflared access ssh --hostname %h ```