From dcf3a754349d651e1446b15cff87c52bf240414e Mon Sep 17 00:00:00 2001 From: maxi322 Date: Mon, 30 Dec 2024 15:14:08 +0100 Subject: [PATCH] Add timestamp server to code signature --- .github/workflows/pre-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 7a87d7db..6682e300 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -60,7 +60,7 @@ jobs: run: | $cert = Get-ChildItem -Path Cert:\CurrentUser\My -CodeSigningCert | Select-Object -First 1 if ($null -eq $cert) { throw "Code signing certificate not found" } - Set-AuthenticodeSignature -FilePath ./winutil.ps1 -Certificate $cert + Set-AuthenticodeSignature -FilePath ./winutil.ps1 -Certificate $cert -TimeStampServer "http://timestamp.digicert.com" - name: Verify code signature shell: pwsh