From a12abaccd681bac9255a4f902cc878554d93c1d9 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 19 May 2026 16:01:14 +0700 Subject: [PATCH] refactor: configure git safe directory for deployment --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d44c8a5..33b3cad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,6 +34,9 @@ jobs: set -e APP_DIR=/opt/imphenbot + # Configure git safe directory + git config --global --add safe.directory \$APP_DIR + # Clone or update repository if [ -d \"\$APP_DIR/.git\" ]; then echo 'Repository exists, pulling latest changes...'