From 5546f66c38c73cd6c21966d8e6139bbf24dcc375 Mon Sep 17 00:00:00 2001 From: Renee Vandervelde Date: Sat, 19 Oct 2024 07:59:13 -0500 Subject: [PATCH] Disable parallel release builds I don't know why, but there's some race condition in publishing that's causing jars not to finish uploading. This might fix it temporarily --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8dd6898..440729c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,7 @@ on: tags: ['*'] env: GITHUB_TAG: ${{ github.ref }} + GRADLE_OPTS: -Dorg.gradle.parallel=false jobs: tests: name: Test