From 35d3704215a14c9dbc53f5f30159ce89ee59559e Mon Sep 17 00:00:00 2001 From: James Verbus Date: Tue, 3 Sep 2024 17:13:17 -0700 Subject: [PATCH] Fixed issue with ci.yml regarding closeAndReleaseSonatypeStagingRepository. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e93814..62d4dd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: && github.ref == 'refs/heads/master' && github.repository == 'linkedin/isolation-forest' && !contains(toJSON(github.event.commits.*.message), '[skip release]') - run: ./gradlew :isolation-forest:publishToSonatype :isolation-forest:closeAndReleaseStagingRepository -i -PscalaVersion=$SCALA_VERSION -PsparkVersion=$SPARK_VERSION + run: ./gradlew :isolation-forest:publishToSonatype closeAndReleaseStagingRepository -i -PscalaVersion=$SCALA_VERSION -PsparkVersion=$SPARK_VERSION env: SCALA_VERSION: ${{ matrix.scala-version }} SPARK_VERSION: ${{ matrix.spark-version }}