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 670b2b0 Always run the archiving step so we can have log files on failure and cancelled 670b2b0 is described below commit 670b2b04391a19da7d5dc53b1b6d74c54b8e872b Author: Otavio Rodolfo Piske <opi...@redhat.com> AuthorDate: Mon Jan 18 16:01:13 2021 +0100 Always run the archiving step so we can have log files on failure and cancelled --- .github/workflows/automatic-sync-camel-master.yml | 1 + .github/workflows/ci-build.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/automatic-sync-camel-master.yml b/.github/workflows/automatic-sync-camel-master.yml index b0f48cd..d2b7aaa 100644 --- a/.github/workflows/automatic-sync-camel-master.yml +++ b/.github/workflows/automatic-sync-camel-master.yml @@ -95,6 +95,7 @@ jobs: clean test - name: archive logs uses: actions/upload-artifact@v2 + if: ${{ always() }} with: name: test-logs path: tests/**/target/tests.log diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 455bc5f..a3b5b87 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -82,6 +82,7 @@ jobs: clean test - name: archive logs uses: actions/upload-artifact@v2 + if: ${{ always() }} with: name: test-logs path: tests/**/target/tests.log