Skip to content

Commit ebf51be

Browse files
committed
gha: don't upload .iso as part of initramfs artifact
- we've a separate artifact for .iso Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
1 parent 9e96d28 commit ebf51be

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,12 @@ jobs:
159159
uses: actions/upload-artifact@v6
160160
with:
161161
name: initramfs-${{ matrix.FLAVOR_ID }}-${{ matrix.arch }}
162-
path: out/
162+
# The full 'out/' directory contents, but not any .iso files (if any) since those are uploaded later
163+
path: |
164+
out/
165+
!out/**/*.iso
163166
retention-days: 1
167+
# do not upload any .iso files (exclude)
164168

165169
# -------------------------------------------------------------------
166170
# UEFI-bootable ISO - only for certain flavors (eg trixie-full)

0 commit comments

Comments
 (0)