From 36139d08fcbe1fb80a7af80541fe7d2030e20d25 Mon Sep 17 00:00:00 2001 From: Aditya Pulipaka Date: Wed, 29 Apr 2026 01:41:25 +0000 Subject: [PATCH] fix 2 Co-authored-by: Copilot --- .gitea/workflows/deploy.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 7d7ea27..23898a2 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -17,8 +17,8 @@ jobs: - name: Configure SSH Key run: | mkdir -p ~/.ssh - echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa + echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 echo "StrictHostKeyChecking no" > ~/.ssh/config - name: Execute Remote Deployment @@ -31,10 +31,10 @@ jobs: echo "==> Navigating to project directory..." cd ~/SousChefAI echo "==> Pulling latest code..." - git pull origin main + git pull origin recipeGen echo "==> Building and starting container..." - docker-compose up -d --build + docker compose up -d --build echo "==> Pruning old images..." docker image prune -f