mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-08-06 15:57:41 +00:00
Use path for actions/download-artifact to fix coverage report (#6073)
Use name and path parameters to explicitly download the coverage report artifact. This fixes a behavioral change introduced with v5.0.0 ofactions/download-artifact.
This commit is contained in:
parent
8e4a87c751
commit
15ba1a3c94
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
@ -388,7 +388,7 @@ jobs:
|
||||
- name: Upload coverage artifact
|
||||
uses: actions/upload-artifact@v4.6.2
|
||||
with:
|
||||
name: coverage-${{ matrix.python-version }}
|
||||
name: coverage
|
||||
path: .coverage
|
||||
include-hidden-files: true
|
||||
|
||||
@ -418,6 +418,9 @@ jobs:
|
||||
exit 1
|
||||
- name: Download all coverage artifacts
|
||||
uses: actions/download-artifact@v5.0.0
|
||||
with:
|
||||
name: coverage
|
||||
path: coverage/
|
||||
- name: Combine coverage results
|
||||
run: |
|
||||
. venv/bin/activate
|
||||
|
Loading…
x
Reference in New Issue
Block a user