Skip to content

Commit c87614b

Browse files
Fix secret name for the certificate
1 parent 206dabf commit c87614b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Decode signing certificate
5959
shell: pwsh
6060
run: |
61-
$certBytes = [Convert]::FromBase64String("${{ secrets.SIGNING_CERTIFICATE_BASE64 }}")
61+
$certBytes = [Convert]::FromBase64String("${{ secrets.SIGNING_CERTIFICATE_2023_2026 }}")
6262
$certPath = "${{ runner.temp }}\certificate.pfx"
6363
[IO.File]::WriteAllBytes($certPath, $certBytes)
6464
Write-Host "Certificate written to: $certPath"

0 commit comments

Comments
 (0)