From 63d25d06aa198e996edad43ad74b941d3fb6558e Mon Sep 17 00:00:00 2001 From: Archi Date: Sun, 5 Sep 2021 20:49:14 +0200 Subject: [PATCH] CI: Don't apply zip_exec on generic-netf Latest Mono (as of 6.12) is unable to extract zip archives with extended attributes that we're applying here --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1d7e8738d..382b813eb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -295,7 +295,8 @@ jobs: if (Test-Path "tools\zip_exec\zip_exec.exe" -PathType Leaf) { $executableFiles = @() - if ($variant -like 'generic*') { + # We should cover generic-netf here as well, but latest Mono (as of 6.12) is unable to extract zip archives with extended attributes that we're applying here + if ($variant -eq 'generic') { $executableFiles += 'ArchiSteamFarm.sh', 'ArchiSteamFarm-Service.sh' } elseif (($variant -like 'linux*') -or ($variant -like 'osx*')) { $executableFiles += 'ArchiSteamFarm', 'ArchiSteamFarm-Service.sh'