Merge branch 'dev'
CI/CD / deploy (push) Successful in 2m42s Details

This commit is contained in:
Jeff Emmett 2026-04-12 11:54:27 -04:00
commit fa3d66981a
1 changed files with 1 additions and 0 deletions

View File

@ -6658,6 +6658,7 @@ async function initOidcKeys() {
const pemBody = pemEnv
.replace(/-----BEGIN PRIVATE KEY-----/, '')
.replace(/-----END PRIVATE KEY-----/, '')
.replace(/\\n/g, '') // literal \n from .env files
.replace(/\s/g, '');
const binaryDer = Uint8Array.from(atob(pemBody), c => c.charCodeAt(0));
oidcPrivateKey = await crypto.subtle.importKey(