From 5266007a6c6d1fb99ec9f4dff209aa752bda7f6d Mon Sep 17 00:00:00 2001 From: Sylvain Juge <763082+SylvainJuge@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:08:53 +0200 Subject: [PATCH] add script to get published artifacts --- .ci/published-artifacts-list.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 .ci/published-artifacts-list.sh diff --git a/.ci/published-artifacts-list.sh b/.ci/published-artifacts-list.sh new file mode 100755 index 00000000..c9f1955c --- /dev/null +++ b/.ci/published-artifacts-list.sh @@ -0,0 +1,2 @@ +#!/bin/env bash +find . -name '*.jar'|grep '/target/'|grep -v javadoc|grep -v sources|grep -v '\-tests.jar'