fix: uptag

This commit is contained in:
devthejo 2023-12-20 23:00:46 +01:00
parent 749ca3c620
commit 1c0c38b51c
Signed by: devthejo
GPG key ID: C04215C627711F5C

View file

@ -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));
}
}
};