Merge branch '2.0.x' into main

This commit is contained in:
Ryan Baxter
2021-09-22 16:39:21 -04:00
2 changed files with 6 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush && ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}}
releaser.maven.deploy-command: ./scripts/deploy.sh {{systemProps}}

5
scripts/deploy.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -e
./mvnw deploy -DskipTests -B -Pfast,deploy ${@}
./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush ${@}