fix: remove quotes around env variable name

This commit is contained in:
Elias Lundgren
2023-09-26 17:36:45 +02:00
parent e75930a3a6
commit d3d7271f87
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ export class Inputs {
public static resolveBuildSecretEnv(kvp: string): string {
const [key, value] = parseKvp(kvp);
return `id=${key},env="${value}"`;
return `id=${key},env=${value}`;
}
public static resolveBuildSecret(kvp: string, file: boolean): string {