From c532681ea1e94345e194dfcb81cb8057d6a6dfde Mon Sep 17 00:00:00 2001 From: poppingmoon <63451158+poppingmoon@users.noreply.github.com> Date: Sun, 31 Mar 2024 06:56:08 +0900 Subject: [PATCH] fix: fix windows exe name --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d570c8f..ae8d94db 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -188,13 +188,13 @@ jobs: uses: actions/upload-artifact@v4 with: name: Windows Installer - path: windows/Output/aria-${{ github.ref_name }}-windows-x64.exe + path: windows/Output/aria-v${{ steps.trim-version.outputs.version }}-windows-x64.exe - name: Release installer if: startsWith(github.ref, 'refs/tags/') uses: softprops/action-gh-release@v2 with: - files: windows/Output/aria-${{ github.ref_name }}-windows-x64.exe + files: windows/Output/aria-v${{ steps.trim-version.outputs.version }}-windows-x64.exe draft: true build-macos: