Skip to content

Commit 421eaec

Browse files
authored
[GHA] Include files in plain subfolders to restore (openvinotoolkit#27046)
Quick fix for restored wheel files
1 parent c44a32e commit 421eaec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/restore_artifacts/restore_artifacts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ def include_filter(include_list: set | list):
3333
"""
3434
Returns input for shutil.copytree ignore - to copy only files from include list
3535
"""
36-
def _filter(_, files: list):
36+
def _filter(root, files: list):
3737
if not include_list:
3838
return []
39-
return [f for f in files if f not in include_list]
39+
return [f for f in files if f not in include_list and Path(root).name not in include_list]
4040

4141
return _filter
4242

0 commit comments

Comments
 (0)