From 626d56b8b8384609d557c46c2b12d21316a17c58 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Tue, 26 Nov 2024 11:27:56 +0100 Subject: [PATCH] ci: fix download-artifact destination path When using download-artifact action, the path attribute is the destination path, and it was wrongly set to ci/*.lock.yaml. As a result, the lock files were extracted in meta-qcom-hwe/ci/*.lock.yaml/ folder instead of meta-qcom-hwe/ci. Signed-off-by: Nicolas Dechesne --- .github/workflows/build-yocto.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-yocto.yml b/.github/workflows/build-yocto.yml index b77da5f8..c7772785 100644 --- a/.github/workflows/build-yocto.yml +++ b/.github/workflows/build-yocto.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/download-artifact@v4 with: name: kas-lock - path: ci/*.lock.yml + path: ci/ - name: Run yocto-check-layer run: | @@ -59,7 +59,7 @@ jobs: - uses: actions/download-artifact@v4 with: name: kas-lock - path: ci/*.lock.yml + path: ci/ - name: Run Yocto patchreview run: | @@ -85,7 +85,7 @@ jobs: - uses: actions/download-artifact@v4 with: name: kas-lock - path: ci/*.lock.yml + path: ci/ - name: Kas build run: |