Skip to content

Commit caa144f

Browse files
Include ZIP artifacts in GitHub Release uploads (#4581)
1 parent a6b477a commit caa144f

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/release-4-publish-release.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,16 @@ jobs:
453453
# ********************************************************************************
454454
455455
# Collect all artifacts to attach from the artifacts directory
456-
readarray -t artifacts_to_attach < <(find "${artifacts_dir}" -type f -name "*.tar.gz" -o -name "*.tgz" -o -name "*.asc" -o -name "*.sha512" -o -name "*.prov")
456+
readarray -t artifacts_to_attach < <(
457+
find "${artifacts_dir}" -type f \( \
458+
-name "*.tar.gz" -o \
459+
-name "*.tgz" -o \
460+
-name "*.zip" -o \
461+
-name "*.asc" -o \
462+
-name "*.sha512" -o \
463+
-name "*.prov" \
464+
\)
465+
)
457466
458467
# Create GitHub release and immediately publish it
459468
exec_process gh release create \

0 commit comments

Comments
 (0)