Skip to content

Commit

Permalink
Fix publish step: do not use widlcards
Browse files Browse the repository at this point in the history
  • Loading branch information
mathoudebine committed Jan 8, 2025
1 parent 1cc46d7 commit cdff12a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/generate-windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ jobs:
- name: '📦 Archive Windows installer'
uses: actions/upload-artifact@v4
with:
path: tools/windows-installer/Output/turing-system-monitor_*.exe
name: turing-system-monitor_${{github.event.release.tag_name}}
path: tools/windows-installer/Output/turing-system-monitor_${{github.event.release.tag_name}}.exe

- name: '📩 Publish Windows installer to Release'
run: |
gh release upload ${{github.event.release.tag_name}} turing-system-monitor_*.exe
gh release upload ${{github.event.release.tag_name}} turing-system-monitor_${{github.event.release.tag_name}}.exe
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit cdff12a

Please sign in to comment.