From fc5b62dd70ef629d3f120df5d02ea10ba402e0dc Mon Sep 17 00:00:00 2001 From: Serreau Jovann Date: Tue, 2 Dec 2025 23:27:30 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(workflows):=20Ajoute=20un=20?= =?UTF-8?q?reset=20--hard=20avant=20git=20pull=20pour=20=C3=A9viter=20les?= =?UTF-8?q?=20conflits.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/install-deps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install-deps.yml b/.github/workflows/install-deps.yml index d52b12e..e2b053b 100644 --- a/.github/workflows/install-deps.yml +++ b/.github/workflows/install-deps.yml @@ -31,4 +31,4 @@ jobs: key: ${{ secrets.SSH_PRIVATE_KEY }} port: 22 script: | - cd /var/www/e-cosplay && git pull && nohup sh ./update.sh + cd /var/www/e-cosplay && git reset --hard && git pull && nohup sh ./update.sh