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:13:21 UTC

(camel-k) branch release-2.1.x updated (9fb45843c -> 968d3c0d0)

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

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


    from 9fb45843c chore: nightly SBOM update
     new 40a84fbae fix(ci): golang caching is already part of go actions
     new b681689a8 fix(ci): publish java modules to snapshots repo
     new 968d3c0d0 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.1.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 40a84fbaea85a461b800ec0580d8e667db41741d
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 4abb219d6..2cb88e771 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -56,13 +56,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.1.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit b681689a8f3f99200909702a0a02957bfa74b0d5
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 2cb88e771..4f7ab1eca 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -130,9 +130,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.1.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 968d3c0d0560c032144fc18748d11d5fdbf85237
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 4f7ab1eca..26d8c9d2c 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -135,9 +135,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