From f7f4babc28d0362cb2265cbcd3678445e38918c4 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 30 Nov 2023 19:16:51 +0100 Subject: [PATCH] build(github): Disable parallelization when publishing This works around multiple staging repositories being created when publishing. Signed-off-by: Sebastian Schuberth --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fc82b15decff3..6460c20620922 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} SIGNING_KEY: ${{ secrets.SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} - run: ./gradlew publishAllPublicationsToOSSRHRepository + run: ./gradlew --no-parallel publishAllPublicationsToOSSRHRepository - name: Build ORT Distributions run: ./gradlew :cli:distZip :helper-cli:distZip - name: Generate Release Notes