From a73d6d2eb5499aa417daa512b2f86bce8f4421270bcaade49774f27e061648e1 Mon Sep 17 00:00:00 2001 From: Minimons Date: Tue, 9 Jun 2026 20:15:15 +0200 Subject: [PATCH] Make publish.sh call docker.sh first. --- publish.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/publish.sh b/publish.sh index bb61727..3089908 100755 --- a/publish.sh +++ b/publish.sh @@ -5,6 +5,8 @@ export VERSION=$(git describe --tags --exact-match 2>/dev/null \ || git symbolic-ref --short -q HEAD \ || git rev-parse --short HEAD) +./docker.sh + echo "Publishing artifact to local Maven repo ($VERSION)..." ./gradlew -Pversion=$VERSION publishToMavenLocal