Skip to content

Commit a47ae19

Browse files
committed
test no sign
1 parent f7da741 commit a47ae19

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -403,3 +403,11 @@ FodyWeavers.xsd
403403
.idea/**/shelf
404404

405405
publish
406+
407+
*.wxs
408+
*.wixobj
409+
*.wixpdb
410+
*.wixlib
411+
*.wixmdb
412+
*.wixprj
413+
*.wixproj

scripts/Release.ps1

+8-9
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,17 @@ foreach ($arch in @("x64", "arm64")) {
2929
-version $assemblyVersion `
3030
-arch $arch `
3131
-msiOutputPath $msiOutputPath `
32-
-outputPath $outputPath `
33-
-sign
32+
-outputPath $outputPath
3433
if ($LASTEXITCODE -ne 0) { throw "Failed to publish" }
3534

3635
# Verify that the output exe is authenticode signed
37-
$sig = Get-AuthenticodeSignature $outputPath
38-
if ($sig.Status -ne "Valid") {
39-
throw "Output file is not authenticode signed"
40-
}
41-
else {
42-
Write-Host "Output file is authenticode signed"
43-
}
36+
#$sig = Get-AuthenticodeSignature $outputPath
37+
#if ($sig.Status -ne "Valid") {
38+
# throw "Output file is not authenticode signed"
39+
#}
40+
#else {
41+
# Write-Host "Output file is authenticode signed"
42+
#}
4443
}
4544
finally {
4645
Write-Host "::endgroup::"

0 commit comments

Comments
 (0)