This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new c95c1eb7361 (chores) ci: fixed incorrect file path
c95c1eb7361 is described below
commit c95c1eb7361a46130c85d0c913d3e7786e238e1f
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Apr 17 14:10:58 2024 +0200
(chores) ci: fixed incorrect file path
---
.github/workflows/pr-build-main.yml | 4 ++--
.github/workflows/push-build-main.yml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/pr-build-main.yml
b/.github/workflows/pr-build-main.yml
index a47f51bf493..b91af911c26 100644
--- a/.github/workflows/pr-build-main.yml
+++ b/.github/workflows/pr-build-main.yml
@@ -66,8 +66,8 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
- name: build-${{ matrix.java }}.log
- path: build.log
+ name: build.log
+ path: build-${{ matrix.java }}.log
- name: Fail if there are uncommitted changes
shell: bash
run: |
diff --git a/.github/workflows/push-build-main.yml
b/.github/workflows/push-build-main.yml
index e7a20462921..47e4b93b2a1 100644
--- a/.github/workflows/push-build-main.yml
+++ b/.github/workflows/push-build-main.yml
@@ -60,8 +60,8 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
- name: build-${{ matrix.java }}.log
- path: build.log
+ name: build.log
+ path: build-${{ matrix.java }}.log
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with: