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/09 11:11:01 UTC

(camel-k) branch release-2.2.x updated (b58c93679 -> d76af78f4)

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

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


    from b58c93679 chore: nightly SBOM update
     new dd42fa894 fix(ci): golang caching is already part of go actions
     new 9cfd51d3c fix(ci): publish java modules to snapshots repo
     new d76af78f4 fix(ci): correct settings path

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/actions/e2e-build/action.yml       |  8 --------
 .github/actions/release-nightly/action.yml | 18 ++++++++----------
 2 files changed, 8 insertions(+), 18 deletions(-)


(camel-k) 01/03: fix(ci): golang caching is already part of go actions

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit dd42fa8943f91f772e1f5f02978acaccf673897c
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Jan 4 09:59:21 2024 +0100

    fix(ci): golang caching is already part of go actions
---
 .github/actions/e2e-build/action.yml       | 8 --------
 .github/actions/release-nightly/action.yml | 7 -------
 2 files changed, 15 deletions(-)

diff --git a/.github/actions/e2e-build/action.yml b/.github/actions/e2e-build/action.yml
index d72389409..d3ac7dfeb 100644
--- a/.github/actions/e2e-build/action.yml
+++ b/.github/actions/e2e-build/action.yml
@@ -27,14 +27,6 @@ runs:
     name: Prepare Test Environment
     uses: ./.github/actions/kamel-prepare-env
 
-  - name: Cache modules
-    uses: actions/cache@v3
-    with:
-      path: ~/go/pkg/mod
-      key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
-      restore-keys: |
-        ${{ runner.os }}-go-
-
   - name: Test
     shell: bash
     run: make
diff --git a/.github/actions/release-nightly/action.yml b/.github/actions/release-nightly/action.yml
index 7977626d9..c586465f5 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -57,13 +57,6 @@ runs:
         cluster-config-data: ${{ inputs.secretE2ECluster }}
         cluster-kube-config-data: ${{ inputs.secretE2EKube }}
         smoke-test-only: true
-    - name: Cache modules
-      uses: actions/cache@v3
-      with:
-        path: ~/go/pkg/mod
-        key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
-        restore-keys: |
-          ${{ runner.os }}-go-
     - name: Get nightly version and update date
       shell: bash
       run: |


(camel-k) 02/03: fix(ci): publish java modules to snapshots repo

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9cfd51d3ca62505c8aa385294acf339efe775a1b
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


(camel-k) 03/03: fix(ci): correct settings path

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d76af78f4b0815df7f13047d17bd4bdfba253dce
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jan 9 12:08:05 2024 +0100

    fix(ci): correct settings path
---
 .github/actions/release-nightly/action.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/release-nightly/action.yml b/.github/actions/release-nightly/action.yml
index ca9748fbf..c549b1df3 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -136,9 +136,9 @@ runs:
       working-directory: java/crds
       shell: bash
       run: |
-        mvn 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
+        mvn clean deploy --settings ../../.github/asf-deploy-settings.xml -q