Skip to content

Commit 17aaba1

Browse files
committed
CI: fix error in download-artifact action
The download-artifact action tries to download all artifacts, but fails if an artifact is not in zip format. At some point something decided to start uploading Docker build summary, which is not in zip format, causing this problem. [Insert rant about Github Actions here] actions/toolkit#1874 (review)
1 parent 774f760 commit 17aaba1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build-willow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ jobs:
107107
steps:
108108
- name: download artifacts
109109
uses: actions/download-artifact@v4
110+
with:
111+
pattern: '!*.dockerbuild'
110112

111113
- name: pwd
112114
run: pwd

0 commit comments

Comments
 (0)