You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2021/01/26 08:30:06 UTC

[camel-kafka-connector] branch master updated: Prevent matrix jobs from rewriting the archived log on github actions

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

orpiske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 15cc5ce  Prevent matrix jobs from rewriting the archived log on github actions
15cc5ce is described below

commit 15cc5cef823350ee6b051d6613c0f613ce90ac8c
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Tue Jan 26 08:42:19 2021 +0100

    Prevent matrix jobs from rewriting the archived log on github actions
---
 .github/workflows/automatic-sync-camel-master.yml | 2 +-
 .github/workflows/ci-build.yml                    | 2 +-
 .github/workflows/daily-jdk14-build.yml           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/automatic-sync-camel-master.yml b/.github/workflows/automatic-sync-camel-master.yml
index cc2e3a2..7d0df2d 100644
--- a/.github/workflows/automatic-sync-camel-master.yml
+++ b/.github/workflows/automatic-sync-camel-master.yml
@@ -97,7 +97,7 @@ jobs:
         uses: actions/upload-artifact@v2
         if: always()
         with:
-          name: test-logs
+          name: test-logs-java-${{ matrix.java }}
           path: tests/**/target/tests.log
       - name: Create Pull Request
         uses: peter-evans/create-pull-request@v2.4.1
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml
index 71d02e9..ee9b877 100644
--- a/.github/workflows/ci-build.yml
+++ b/.github/workflows/ci-build.yml
@@ -84,7 +84,7 @@ jobs:
         uses: actions/upload-artifact@v2
         if: always()
         with:
-          name: test-logs
+          name: test-logs-java-${{ matrix.java }}
           path: tests/**/target/tests.log
 
 
diff --git a/.github/workflows/daily-jdk14-build.yml b/.github/workflows/daily-jdk14-build.yml
index 38fd1eb..ede2916 100644
--- a/.github/workflows/daily-jdk14-build.yml
+++ b/.github/workflows/daily-jdk14-build.yml
@@ -81,5 +81,5 @@ jobs:
         uses: actions/upload-artifact@v2
         if: always()
         with:
-          name: test-logs
+          name: test-logs-java-${{ matrix.java }}
           path: tests/**/target/tests.log
\ No newline at end of file