Skip to content

Commit cdff12a

Browse files
committed
Fix publish step: do not use widlcards
1 parent 1cc46d7 commit cdff12a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/generate-windows-installer.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ jobs:
4343
- name: '📦 Archive Windows installer'
4444
uses: actions/upload-artifact@v4
4545
with:
46-
path: tools/windows-installer/Output/turing-system-monitor_*.exe
46+
name: turing-system-monitor_${{github.event.release.tag_name}}
47+
path: tools/windows-installer/Output/turing-system-monitor_${{github.event.release.tag_name}}.exe
4748

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

0 commit comments

Comments
 (0)