Skip to content

Commit

Permalink
Correcting publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jisungbin committed Dec 14, 2024
1 parent 6255bf3 commit eb69f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PROJECTS=(
":compiler-gradle-plugin"
)

COMMAND_SUFFIX="publishMavenPublicationToMavenCentralRepository"
COMMAND_SUFFIX="publishAndReleaseToMavenCentral"

if [ "$1" == "local" ]; then
COMMAND_SUFFIX="publishToMavenLocal"
Expand All @@ -23,5 +23,5 @@ NC='\033[0m' # No Color

for PROJECT in "${PROJECTS[@]}"; do
echo -e "${GREEN}Executing: ./gradlew ${PROJECT}:${COMMAND_SUFFIX}${NC}"
./gradlew "${PROJECT}:${COMMAND_SUFFIX}" --console=plain
./gradlew "${PROJECT}:${COMMAND_SUFFIX}" --console=plain --no-configuration-cache
done

0 comments on commit eb69f73

Please sign in to comment.