Skip to content

Commit

Permalink
ci: fix release assets path
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Mar 20, 2024
1 parent eca7d66 commit 5c05517
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/builder_releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,22 @@ jobs:
uses: actions/download-artifact@v4
with:
name: DicoGIS_executable_windows_GUI
path: builds/windows/gui
path: builds/windows/gui/

- name: Download built package for Windows - CLI
uses: actions/download-artifact@v4
with:
name: DicoGIS_executable_windows_CLI
path: builds/windows/cli
path: builds/windows/cli/

- name: Release
uses: softprops/action-gh-release@v1
with:
discussion_category_name: announcements
fail_on_unmatched_files: true
files: builds/*/*.zip
files: |
builds/ubuntu/cli/*.bin
builds/ubuntu/gui/*.bin
builds/windows/cli/*.exe
builds/windows/gui/*.exe
generate_release_notes: true

0 comments on commit 5c05517

Please sign in to comment.