From 9f4894bbb581ed112d1d1028962c92f431c08a43 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 3 Apr 2024 05:12:28 +0200 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/8748 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f5bcf3ce7..a420306a36 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -192,7 +192,7 @@ jobs: echo 'Zip and tar...' zip -rq $zipName . -x "*.git*" "*.ci*" "*.github*" "*node_modules*" "*output.txt*" touch $tarName - tar --exclude=$tarName --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' -czf $tarName . # add sha256 sum echo 'Sha sum ...'