From 54f805a0c942afc123beb776a71d1bbacde81878 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Thu, 9 Apr 2026 17:18:07 +0200 Subject: [PATCH] fix exe installer not found after --- .github/workflows/win-exe.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/win-exe.yml b/.github/workflows/win-exe.yml index 925845b89..7534e3674 100644 --- a/.github/workflows/win-exe.yml +++ b/.github/workflows/win-exe.yml @@ -375,11 +375,11 @@ jobs: -ext "WixToolset.Util.wixext" -ext "WixToolset.BootstrapperApplications.wixext" ./bundle/bundleWithWinfsp.wxs - -out "../../installer/unsigned/Cryptomator-Installer.exe" + -out "../../installer/Cryptomator-Installer.exe" - name: Detach burn engine in preparation to sign if: inputs.sign || inputs.is-release || github.event_name == 'schedule' run: > - wix burn detach installer/unsigned/Cryptomator-Installer.exe -engine tmp/engine.exe + wix burn detach installer/Cryptomator-Installer.exe -engine tmp/engine.exe - name: Sign WiX burn engine with Azure Trusted Signing if: inputs.sign || inputs.is-release || github.event_name == 'schedule' uses: ./.github/actions/win-sign-action @@ -393,8 +393,9 @@ jobs: client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - name: Reattach signed burn engine to installer if: inputs.sign || inputs.is-release || github.event_name == 'schedule' - run: > - wix burn reattach installer/unsigned/Cryptomator-Installer.exe -engine tmp/engine.exe -o installer/Cryptomator-Installer.exe + run: | + Move-Item -Path installer/Cryptomator-Installer.exe -Destination tmp/Cryptomator-Installer.exe + wix burn reattach tmp/Cryptomator-Installer.exe -engine tmp/engine.exe -o installer/Cryptomator-Installer.exe - name: Sign EXE installer with Azure Trusted Signing if: inputs.sign || inputs.is-release || github.event_name == 'schedule' uses: ./.github/actions/win-sign-action