From 9d9d34940056ea1d8d0d6d07585b73a9b3c5bd5d Mon Sep 17 00:00:00 2001 From: Colin White Date: Mon, 30 Oct 2023 14:01:35 -0700 Subject: [PATCH] Fix publish_remote script on CI. --- publish_remote.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/publish_remote.sh b/publish_remote.sh index f0c39be5e6..c116c6ac72 100755 --- a/publish_remote.sh +++ b/publish_remote.sh @@ -1,11 +1,4 @@ #!/bin/bash -# Build the baseline profile. -./assemble_baseline_profile.sh - -if [[ `git status --porcelain` ]]; then - echo "The baseline profile has changed. Commit the changes before publishing." -else - # Build and upload the artifacts to 'mavenCentral'. - ./gradlew publish -fi +# Build and upload the artifacts to 'mavenCentral'. +./gradlew publish