From dc7cdb81cc5674b50a741ad97dca09e16793c946 Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Sat, 10 Feb 2024 09:42:00 -0800 Subject: [PATCH] Don't run tests on release (#37) * Don't run tests on release - They should already have been run, alternatively we'd need to enable xvfb as we do for the build step * Update .github/workflows/release-tags.yml Co-authored-by: Raven Szewczyk --------- Co-authored-by: Raven Szewczyk --- .github/workflows/release-tags.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-tags.yml b/.github/workflows/release-tags.yml index 9450536..1e91d72 100644 --- a/.github/workflows/release-tags.yml +++ b/.github/workflows/release-tags.yml @@ -55,7 +55,7 @@ jobs: run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' ${{ inputs.workspace }} - name: Build the mod - run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' build + run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' assemble # Continue on error in the following steps to make sure releases still get made even if one of the methods fails