From 20cfa9f87e607b0c039139c584e087ca23ba125a Mon Sep 17 00:00:00 2001 From: clementb49 Date: Tue, 4 Jun 2024 23:36:16 +0200 Subject: [PATCH] ci: adding group for zip and correct pattern to download artifact installer --- .github/workflows/ci_release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index a69733ef..9fd8bc64 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -24,13 +24,16 @@ jobs: run: | cd portable_app for d in */; do - zip -r "${d%/}.zip" "$d" + echo "::group::Zipping $d" + zip -6 -r "${d%/}.zip" "$d" + echo "removing $d" rm -r "$d" + echo "::endgroup::" done - name: download app installer uses: actions/download-artifact@v4 with: - name: setup_basiliskLLM_* + pattern: setup_basiliskLLM_* path: installer - name: create release uses: softprops/action-gh-release@v2