Skip to content

Commit

Permalink
Disable code signing as we don't have a valid certificate anymore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jozefizso committed Feb 16, 2024
1 parent cde2a06 commit 77ddee1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/Get-BuildInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ $app_version_suffix = "preview${env:GITHUB_RUN_NUMBER}"

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

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

0 comments on commit 77ddee1

Please sign in to comment.