From 45733799589a25c810afa0f36056adda57f88c71 Mon Sep 17 00:00:00 2001 From: Adrian Cole <64215+codefromthecrypt@users.noreply.github.com> Date: Sun, 26 May 2024 09:25:02 +0800 Subject: [PATCH] temporarily ignores snapshots so that we can release (#231) this project is not used in any way except an all-jar or a docker image, so we can release even if not proper, by temporarily ignoring snapshots. This is better than awaiting ES 8.14 which we don't know when will be released. Signed-off-by: Adrian Cole --- build-bin/deploy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-bin/deploy b/build-bin/deploy index 452007a..4d29dd0 100755 --- a/build-bin/deploy +++ b/build-bin/deploy @@ -10,6 +10,7 @@ if [ "${version}" = "master" ]; then version=$(sed -En 's/.*(.*)<\/version>.*/\1/p' pom.xml| head -1) fi -build-bin/maven/maven_deploy +# TODO: remove -DignoreSnapshots=true after ES 8.14.0 is released +build-bin/maven/maven_deploy -DignoreSnapshots=true export RELEASE_FROM_MAVEN_BUILD=true build-bin/docker_push ${version}