diff --git a/.github/workflows/generate-windows-installer.yml b/.github/workflows/generate-windows-installer.yml index d5b62bfa..9c7c7730 100644 --- a/.github/workflows/generate-windows-installer.yml +++ b/.github/workflows/generate-windows-installer.yml @@ -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 }} \ No newline at end of file