From 0bcf5460973f62a5ec2cf3074fdb697889017967 Mon Sep 17 00:00:00 2001 From: Anil Kumar Tegala Date: Tue, 11 Feb 2025 12:45:58 +0530 Subject: [PATCH] fix: overwrite non-empty tmp-docs directory while updating allure report (#1031) Signed-off-by: anil-tegala --- .github/workflows/update-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-tests.yml b/.github/workflows/update-tests.yml index a1e20ff40..d5f4d32a2 100644 --- a/.github/workflows/update-tests.yml +++ b/.github/workflows/update-tests.yml @@ -52,6 +52,7 @@ jobs: git config --global user.name "TIP Automation User" git pull git checkout gh-pages || git checkout -b gh-pages + rm -rf docs/tmp-docs || true mv tmp-docs docs git add docs git commit -m'Update allure report for github pages'