From 5fd7fb874e995501913723417ec78fc33755957c Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Thu, 13 Nov 2025 14:58:22 +0100 Subject: [PATCH] remove wixhelper extract step --- .github/workflows/win-exe.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/win-exe.yml b/.github/workflows/win-exe.yml index 951a78b8a..5a454b1ba 100644 --- a/.github/workflows/win-exe.yml +++ b/.github/workflows/win-exe.yml @@ -185,16 +185,6 @@ jobs: } $jar.Dispose() } - - name: Extract wixhelper.dll for Codesigning #see https://github.com/cryptomator/cryptomator/issues/3130 - shell: pwsh - run: | - $extractDir = New-Item -Path ".\dir-with-wixhelper" -ItemType Directory - if( '${{ steps.jep-493-check.outputs.jvm-with-jmods }}' -eq 'true' ) { - & $env:JAVA_HOME\bin\jmod.exe extract --dir=$extractDir "${env:JAVA_HOME}\jmods\jdk.jpackage.jmod" - } else { - & $env:JAVA_HOME\bin\jimage.exe extract --dir=$extractDir "${env:JAVA_HOME}\lib\modules" - } - Get-ChildItem -Recurse -Path $extractDir -File wixhelper.dll | Select-Object -Last 1 | Copy-Item -Destination "appdir" - name: Sign DLLs with Azure Trusted Signing if: inputs.sign || github.event_name == 'release' uses: ./.github/actions/win-sign-action