From 23aa45609b380aa521b383cc0d772cde4f135dae Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 22 Feb 2025 10:20:23 +0100 Subject: [PATCH] Remove files from zip. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1250cfa96..330805880b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -204,9 +204,9 @@ jobs: # zip and tar everything echo 'Zip and tar...' - zip -rq $zipName . -x "*.git*" "*.ci*" "*.github*" "*node_modules*" "*output.txt*" + zip -rq $zipName . -x "*.git*" "*.ci*" "*.github*" "*node_modules*" "*output.txt*" "*Procfile*" "*crowdin.yml*" "*sonar-project.properties*" touch $tarName - tar --exclude=$tarName --exclude=$zipName --exclude='./.git' --exclude='./.ci' --exclude='./.github' --exclude='./node_modules' --exclude='./output.txt' -czf $tarName . + tar --exclude=$tarName --exclude=$zipName --exclude='./.git' --exclude='./.ci' --exclude='./.github' --exclude='./node_modules' --exclude='./output.txt' --exclude='./Procfile' --exclude='../crowdin.yml' --exclude='./sonar-project.properties' -czf $tarName . # add sha256 sum echo 'Sha sum ...'