Skip to content

Commit

Permalink
ci: adding group for zip and correct pattern to download artifact ins…
Browse files Browse the repository at this point in the history
…taller
  • Loading branch information
clementb49 committed Jun 4, 2024
1 parent 64bdcf9 commit 20cfa9f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 20cfa9f

Please sign in to comment.