Skip to content

Commit 77ddee1

Browse files
committed
Disable code signing as we don't have a valid certificate anymore
Starting June 1, 2023 CA/Browser Forum requires private keys for code signing certificates to be stored on hardware certified as FIPS 140 Level 2, Common Criteria EAL 4+, or equivalent. This prohibits open source developers from obtaining certificates to sign code in GitHub Actions.
1 parent cde2a06 commit 77ddee1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/Get-BuildInfo.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ $app_version_suffix = "preview${env:GITHUB_RUN_NUMBER}"
3131

3232
if ($configuration -ieq 'release') {
3333
if ($event_name -notlike 'pull_request') {
34-
$sign_binaries = 'true'
34+
# temporary disabled as we don't have a valid certificate
35+
$sign_binaries = 'false'
3536
}
3637

3738
if ($ref -like 'refs/tags/v*') {

0 commit comments

Comments
 (0)