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 2024/01/05 11:25:20 UTC

(camel-k) branch main updated: fix(ci): publish java modules to snapshots repo

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

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


The following commit(s) were added to refs/heads/main by this push:
     new cae9e8995 fix(ci): publish java modules to snapshots repo
cae9e8995 is described below

commit cae9e899510656f71fecc0131cc8a0aaf6e8fcfe
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Fri Jan 5 12:24:11 2024 +0100

    fix(ci): publish java modules to snapshots repo
    
    Closes #5023
---
 .github/actions/release-nightly/action.yml | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/.github/actions/release-nightly/action.yml b/.github/actions/release-nightly/action.yml
index c586465f5..ca9748fbf 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -131,9 +131,14 @@ runs:
         replacesArtifacts: true
         tag: ${{ env.VERSION }}
         commit: main
-    # If release was okey, we can also release the CRD Fabric8 extensions
+    # If release was okey, we can also release the java extensions
     - name: Deploy Camel-K-CRDs to ASF Snapshots Repository
-      working-directory: java
+      working-directory: java/crds
       shell: bash
       run: |
-        ./mvnw clean deploy --settings ../.github/asf-deploy-settings.xml -q
+        mvn clean deploy --settings ../.github/asf-deploy-settings.xml -q
+    - name: Deploy Camel-K-maven-logging to ASF Snapshots Repository
+      working-directory: java/maven-logging
+      shell: bash
+      run: |
+        mvn clean deploy --settings ../.github/asf-deploy-settings.xml -q
\ No newline at end of file