From 24e5bcbf4d52ae6489e06cf18df24002110ab796 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Wed, 18 Mar 2026 02:07:37 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20debug=20installer=20signing=20=E2=80=94?= =?UTF-8?q?=20log=20path=20and=20list=20exe=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index 0829478..7e1c3d3 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -105,12 +105,18 @@ jobs: $env:Path = "$env:EXTRA_PATH;$env:Path" $ver = ("${{ github.ref_name }}" -replace '^v','') $token = [System.IO.File]::ReadAllText("$env:TEMP\aztoken.txt") - $binaries = @("src-tauri\target\release\Wraith.exe", "Wraith_" + $ver + "_x64-setup.exe") + $installer = "Wraith_" + $ver + "_x64-setup.exe" + Write-Host "Looking for installer: $installer" + Write-Host "Current dir: $(Get-Location)" + Get-ChildItem *.exe -ErrorAction SilentlyContinue + $binaries = @("src-tauri\target\release\Wraith.exe", $installer) foreach ($path in $binaries) { if (Test-Path $path) { Write-Host "Signing: $path" java -jar jsign.jar --storetype AZUREKEYVAULT --keystore "${{ secrets.AZURE_KEY_VAULT_URL }}" --storepass $token --alias "${{ secrets.AZURE_CERT_NAME }}" --tsaurl http://timestamp.digicert.com --tsmode RFC3161 $path Write-Host "Signed." + } else { + Write-Host "NOT FOUND: $path" } } Remove-Item "$env:TEMP\aztoken.txt" -ErrorAction SilentlyContinue