From 811b0f25324680eddfe5462ce384f906778829e8 Mon Sep 17 00:00:00 2001 From: Jozufozu Date: Sun, 12 Jan 2025 16:23:34 -0800 Subject: [PATCH] Hrm - Remove sources and javadoc after glob copying them --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b949f1132..de171b355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -69,9 +69,11 @@ jobs: echo "FABRIC_API_VERSION=$(grep '^fabric_api_version =' gradle.properties | cut -d'=' -f2 | tr -d ' ' | sed 's/+.*//')" >> "$GITHUB_ENV" - name: Move Test Mod and Flywheel into run/mods + # We don't want to recreate the jar name formatting so glob everything over then remove the sources and javadoc jars run: | mkdir -p run/mods cp ${{ matrix.loader }}/build/libs/*.jar run/mods + rm -f run/mods/*-sources.jar run/mods/*-javadoc.jar # Lock to a specific commit, it would be bad if the tag is re-pushed with unwanted changes - name: Run the MC client