From 1c0c38b51c4fdcb0c51fad740aabdbc9def60491 Mon Sep 17 00:00:00 2001 From: devthejo Date: Wed, 20 Dec 2023 23:00:46 +0100 Subject: [PATCH] fix: uptag --- uptag/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uptag/index.js b/uptag/index.js index a78deb9..adb78e4 100644 --- a/uptag/index.js +++ b/uptag/index.js @@ -47,10 +47,11 @@ const main = async () => { const { name, key = cdKey, tag = defaultTag } = app; const valuesFile = `apps/${name}/envs/${env}/values.yaml`; console.log(`${valuesFile} -> ${key}=${tag}`); - const valuesRaw = await fs.readFile(`${workingDir}/${valuesFile}`, { encoding: "utf-8" }) + const valuesFilePath = `${workingDir}/${valuesFile}`; + const valuesRaw = await fs.readFile(valuesFilePath, { encoding: "utf-8" }) const values = yaml.parse(valuesRaw); set(values, key, tag); - await fs.writeFile(yaml.stringify(values), { encoding: "utf-8" }); + await fs.writeFile(valuesFilePath, yaml.stringify(values)); } } };