From daa41f82faf1025ee1184930aad29a7b11ed8f7e Mon Sep 17 00:00:00 2001 From: Nick Evans <2616208+nickevansuk@users.noreply.github.com> Date: Wed, 15 May 2024 16:54:49 +0100 Subject: [PATCH] feat: Exclude version.txt from the release zip file --- .gitattributes | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index ceeaeea..754b526 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,6 @@ # exclude .gitattributes (this file) and similar from the release zip file .git* export-ignore # exclude README.md from the release zip file -README.md export-ignore \ No newline at end of file +README.md export-ignore +# exclude version.txt from the release zip file +version.txt export-ignore