From b301e1d282bb68aeee6e93c4630551fe64960900 Mon Sep 17 00:00:00 2001 From: Valters Melnalksnis Date: Sun, 13 Oct 2024 15:20:25 +0300 Subject: [PATCH] fix(build): exclude Node directory from publish --- deployment/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/publish.sh b/deployment/publish.sh index 6e3d2220..ea37353b 100755 --- a/deployment/publish.sh +++ b/deployment/publish.sh @@ -30,7 +30,7 @@ fi ( cd "$publish_dir" || exit - zip -r -9 "$archive_name" . + zip -r -9 "$archive_name" . -x ./Node/\* ) echo "artifact-name=$archive_name" >>"$GITHUB_OUTPUT"