From 11a4ade0868b4eb567e7dd44dab5b4c59257323f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Thu, 21 Nov 2024 09:36:19 +0100 Subject: [PATCH] fix deploy --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f6f11bab76..3ca5851080 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,9 @@ jobs: - name: Checkout uses: actions/checkout@v4.2.2 + - name: Remove 'patches' directories from all results + run: find . -type d -name 'patches' -exec rm -rf {} + + - name: Setup Node uses: actions/setup-node@v4.1.0 with: @@ -20,7 +23,7 @@ jobs: - name: Install Dependencies run: cd webpage && npm install - + - name: Deploy run: | git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/repairbench/repairbench.github.io.git