You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/11/21 10:00:03 UTC

[camel-k-runtime] branch release-1.12.x updated: fix(ci): keep version artifact only

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-1.12.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/release-1.12.x by this push:
     new 84524712 fix(ci): keep version artifact only
84524712 is described below

commit 84524712e56880d0e5ece478105846e53c4d027f
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon Nov 21 10:30:17 2022 +0100

    fix(ci): keep version artifact only
---
 distribution/src/main/assemblies/repository.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/distribution/src/main/assemblies/repository.xml b/distribution/src/main/assemblies/repository.xml
index 3a530339..58cea424 100644
--- a/distribution/src/main/assemblies/repository.xml
+++ b/distribution/src/main/assemblies/repository.xml
@@ -29,8 +29,11 @@
       <outputDirectory>./</outputDirectory>
       <directory>${settings.localRepository}</directory>
       <includes>
-        <include>org/apache/camel/k/**</include>
+        <include>org/apache/camel/k/*/${project.version}/**</include>
       </includes>
+      <excludes>
+        <exclude>org/apache/camel/k/apache-camel-k-runtime/**</exclude>
+      </excludes>
      </fileSet>
   </fileSets>
 </assembly>