We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc46d7 commit 8dd3591Copy full SHA for 8dd3591
1 file changed
.github/workflows/generate-windows-installer.yml
@@ -43,10 +43,12 @@ jobs:
43
- name: '📦 Archive Windows installer'
44
uses: actions/upload-artifact@v4
45
with:
46
- path: tools/windows-installer/Output/turing-system-monitor_*.exe
+ name: turing-system-monitor_${{github.event.release.tag_name}}
47
+ path: tools\windows-installer\Output\turing-system-monitor_${{github.event.release.tag_name}}.exe
48
+ if-no-files-found: error
49
50
- name: '📩 Publish Windows installer to Release'
51
run: |
- gh release upload ${{github.event.release.tag_name}} turing-system-monitor_*.exe
52
+ gh release upload ${{github.event.release.tag_name}} tools\windows-installer\Output\turing-system-monitor_${{github.event.release.tag_name}}.exe
53
env:
54
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments