From 7faf7c4f1a19ccdce7b4bae1c23bbe0cf2352363 Mon Sep 17 00:00:00 2001 From: UltraProdigy <187078471+UltraProdigy@users.noreply.github.com> Date: Fri, 22 May 2026 00:33:31 -0400 Subject: [PATCH] Limit B&T Individual Artifact Uploads to Jars (#64) --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2d132f3..d9137d2 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -183,7 +183,7 @@ jobs: id: find-artifacts shell: bash run: | - mapfile -t files < <(find build/libs -maxdepth 1 -type f | sort) + mapfile -t files < <(find build/libs -maxdepth 1 -type f -name '*.jar' | sort) if (( ${#files[@]} > 10 )); then echo "::warning::Found ${#files[@]} files in build/libs, but only the first 10 will be uploaded individually."