From 0258ab8c49aa05d1fff8ef4ba1444dbaccf255e8 Mon Sep 17 00:00:00 2001 From: Thamara Andrade Date: Thu, 21 Sep 2023 09:20:04 -0300 Subject: [PATCH] Fixing release on windows --- .github/workflows/Release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index c36589c1d..5995332c5 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -115,12 +115,12 @@ jobs: - name: 'Packing EXE, etc' if: success() run: npm run setup:win - - name: 'Renaming MSI & EXE...' + - name: 'Renaming EXE...' shell: pwsh if: success() # Usual format is 'TimeToLeaveInstaller.exe'. Consistent expected name is 'time-to-leave-2.0.1-installer.exe' run: | - $newFileName = "packages/time-to-leave-${{ env.APP_VERSION }}-installer.exe" + $newFileName = "time-to-leave-${{ env.APP_VERSION }}-installer.exe" Rename-Item -Path "packages/TimeToLeaveInstaller.exe" -NewName $newFileName - name: 'Release EXE to GH' if: success()