From 675f2bf89c0fd2a6be54c216f252562e1113fc5c Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Thu, 26 Sep 2024 16:36:28 +0100 Subject: [PATCH] Re-added Windows zip distribution --- .ci/pack.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/pack.sh b/.ci/pack.sh index 8be6418da..607c2447b 100755 --- a/.ci/pack.sh +++ b/.ci/pack.sh @@ -53,7 +53,9 @@ function pack_artifacts() { if [ "$OS" = "windows" ] && [ "$GITHUB_REF_TYPE" = "tag" ]; then # Move the installer to the artifacts directory mv src/installer/bin/*.exe artifacts/ -elif [ -n "$UNPACKED" ]; then +fi + +if [ -n "$UNPACKED" ]; then # Copy the artifacts to be uploaded unpacked. for ARTIFACT in build/bundle/*; do FILENAME=$(basename "$ARTIFACT")