From 165714822c5880d2df254af25b388675d5ba48c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Stul=C3=ADk?= Date: Fri, 31 May 2024 22:32:28 +0200 Subject: [PATCH] Fix pack windows files to zip --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f11d1de..23be1ff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,7 +51,7 @@ jobs: dotnet publish WebsiteCertificateChecker/WebsiteCertificateChecker.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name" # Pack files - if [ "${{ matrix.target }}" == "win-x64" || "${{ matrix.target }}" == "win-arm64" ]; then + if [ "${{ matrix.target }}" == "win-x64" ] || [ "${{ matrix.target }}" == "win-arm64" ]; then # Pack to zip for Windows 7z a -tzip "${release_name}.zip" "./${release_name}/*" else