diff --git a/.github/workflows/clone-repos.yml b/.github/workflows/clone-repos.yml index f6e9845..83d4863 100644 --- a/.github/workflows/clone-repos.yml +++ b/.github/workflows/clone-repos.yml @@ -14,6 +14,9 @@ jobs: run: | repo_url=$(cat repos.txt) echo "REPO_URL=$repo_url" >> $GITHUB_ENV + - name: Remove tools folder if exists + run: | + if [ -d "tools" ]; then rm -rf tools; fi - name: Clone repo into tools folder run: | mkdir -p tools