From 480d75824190d559db580a72518fb61f366abbb8 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Mon, 20 Jul 2026 06:57:08 -0400 Subject: [PATCH] Fix: exclude large test media files from release tarball (mp4/m4a/webm/ogg) to avoid nginx 413 on upload --- increment_and_push.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/increment_and_push.sh b/increment_and_push.sh index cf99971..7139298 100755 --- a/increment_and_push.sh +++ b/increment_and_push.sh @@ -286,6 +286,10 @@ create_source_tarball() { --exclude='*.log' \ --exclude='*.tar.gz' \ --exclude='nostr_core_lib' \ + --exclude='tests/local-site/assets/*.mp4' \ + --exclude='tests/local-site/assets/*.m4a' \ + --exclude='tests/local-site/assets/*.webm' \ + --exclude='tests/local-site/assets/*.ogg' \ . > /dev/null 2>&1; then echo "$tarball_name" else