From edfd021257458d6d2828821531be8fa9b61e00fa Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Sun, 19 Apr 2026 12:25:58 +0200 Subject: [PATCH] [CI] Cleanup artifact content removes temp_builds directory before packaging closes https://github.com/official-stockfish/Stockfish/pull/6745 No functional change --- .github/workflows/compilation.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 7a170f614..3b9d48632 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -136,7 +136,9 @@ jobs: run: ./scripts/check_universal.sh ./stockfish-ubuntu-x86-64-universal "$SDE_DIR/sde" "$benchref" - name: Remove non src files - run: git -C src clean -fx + run: | + rm -fR src/temp_builds + git -C src clean -fx - name: Upload artifact for (pre)-release uses: actions/upload-artifact@v4