release workflow

This commit is contained in:
2026-02-24 18:30:45 -06:00
parent 06e021f8a1
commit db9b722929
15 changed files with 398 additions and 77 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ const toBase64 = (str: string) => Buffer.from(str).toString("base64");
const secretYaml = `apiVersion: v1
kind: Secret
metadata:
name: ttscm-keys
name: optima-keys
type: Opaque
data:
accessToken.key: ${toBase64(generatedKeys["accessToken"].private)}
@@ -48,7 +48,7 @@ data:
secureValues.pub: ${toBase64(generatedKeys["secureValues"].public)}
`;
const secretPath = `${outputDir}/ttscm-keys-secret.yaml`;
const secretPath = `${outputDir}/optima-keys-secret.yaml`;
await Bun.write(secretPath, secretYaml);
console.log(`\n ✔ ${secretPath}`);