Skip to content

Commit

Permalink
ci: fix download-artifact destination path
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
ndechesne committed Nov 26, 2024
1 parent ab75ac6 commit 626d56b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -85,7 +85,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: kas-lock
path: ci/*.lock.yml
path: ci/

- name: Kas build
run: |
Expand Down

0 comments on commit 626d56b

Please sign in to comment.