From f586df4dd9034a1ce37b759028425edb3ece9891 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Fri, 9 Feb 2024 14:25:39 +0100 Subject: [PATCH] Don't close staging repository automatically (#667) Motivation: Let's not close the staging repository automatically so we can still inspect it before we do a release Modifications: Don't close Result: Be able to still inspect staging repository before do the actual release --- scripts/finish_release.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/finish_release.sh b/scripts/finish_release.sh index 0cb42207a..a742957a7 100755 --- a/scripts/finish_release.sh +++ b/scripts/finish_release.sh @@ -32,5 +32,4 @@ export JAVA_HOME="$JAVA8_HOME" ./mvnw -Psonatype-oss-release,"$CROSS_COMPILE_PROFILE" clean package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true ./mvnw -Psonatype-oss-release clean package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true -DstagingProgressTimeoutMinutes=10 -./mvnw -Psonatype-oss-release org.sonatype.plugins:nexus-staging-maven-plugin:rc-close org.sonatype.plugins:nexus-staging-maven-plugin:rc-release -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true -DstagingProgressTimeoutMinutes=10 git checkout "$BRANCH"