From 7a4971e6cf3299c6e8f2485959ebfc55d0a31f34 Mon Sep 17 00:00:00 2001 From: Lukas Ruegner Date: Fri, 5 Jan 2024 18:24:17 +0100 Subject: [PATCH] increase gh-action publish timeout --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3e368062..5f3d55db 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,6 +31,8 @@ jobs: ./gradlew publishAllPublicationsToMavenCentral --no-configuration-cache ./gradlew closeAndReleaseRepository env: + SONATYPE_CONNECT_TIMEOUT_SECONDS: 180 + SONATYPE_CLOSE_TIMEOUT_SECONDS: 900 ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_SECRET_KEY }}