From ede6a169e0b8637b7f837c9891112e04f8f52bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Thu, 11 May 2023 12:35:39 +0200 Subject: [PATCH] Revert "Do not clear working directory" This reverts commit 0f60e35d26d890385a79bda783de3bfad392d620. --- .github/workflows/pr_build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 39ca5b449a..13daa88831 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -155,6 +155,12 @@ jobs: echo "INSTALLER=Overte-Interface-$RELEASE_NUMBER-${GIT_COMMIT_SHORT}.$INSTALLER_EXT" >> $GITHUB_ENV fi + - name: Clear Working Directory + if: startsWith(matrix.os, 'windows') || contains(matrix.os, 'self-hosted') + shell: bash + working-directory: ${{runner.workspace}} + run: rm -rf ./* + - uses: actions/checkout@v3 with: submodules: false