From 3515703a9068d85bf7458f006a0b58393767e5be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= <75033623+htamas1210@users.noreply.github.com> Date: Sun, 9 Nov 2025 13:12:27 +0100 Subject: [PATCH] Modify zip commands in release workflow to include files in the folder with the wildcard Update zip commands to include all files in the directories. --- .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 24e27a6..b3044b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -88,8 +88,8 @@ jobs: cd $(git rev-parse --show-toplevel) pwd cd release/ - zip linux.zip linux/ - zip windows.zip windows/ + zip linux.zip linux/* + zip windows.zip windows/* - name: Create GitHub Release uses: softprops/action-gh-release@v2