Skip to content

Commit

Permalink
ci: move installer from subdir to dir
Browse files Browse the repository at this point in the history
  • Loading branch information
clementb49 committed Jun 4, 2024
1 parent 09a46bf commit 939f207
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,16 @@ jobs:
with:
pattern: setup_basiliskLLM_*
path: installer
- name: move installer
run: |
find "./installer" -type f -name "*.exe" -exec mv {} "./installer"
find "./installer" -mindepth 1 -type d -exec rmdir {} +
- name: create release
uses: softprops/action-gh-release@v2
with:
files: |
portable_app/*.zip
installer/*
installer/*.exe
tag_name: ${{ github.ref }}
draft: true
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }}
Expand Down

0 comments on commit 939f207

Please sign in to comment.