We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6b477a commit caa144fCopy full SHA for caa144f
1 file changed
.github/workflows/release-4-publish-release.yml
@@ -453,7 +453,16 @@ jobs:
453
# ********************************************************************************
454
455
# 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")
+ 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
+ )
466
467
# Create GitHub release and immediately publish it
468
exec_process gh release create \
0 commit comments