actions/uptag/index.js
2024-01-25 23:35:50 +01:00

62 lines
1.6 KiB
JavaScript

const fs = require("fs/promises");
const yaml = require("yaml");
const set = require("lodash.set");
const yamlLoadAll = (input) => {
const documents = [];
const append = (arr) => {
const doc = arr.join("\n").trim();
if (doc.length > 0) {
const obj = yaml.parse(doc.toString());
if (obj !== null) {
documents.push(obj);
}
}
};
let currentDoc = [];
for (const line of input.split("\n")) {
if (line.startsWith("---")) {
append(currentDoc);
currentDoc = [];
} else {
currentDoc.push(line);
}
}
append(currentDoc);
return documents;
};
const main = async () => {
const defaultTag = process.env.TAG;
const cdApp = process.env.CD_APP;
const cdEnv = process.env.CD_ENV;
const cdKey = process.env.CD_KEY;
const workingDir = process.env.CD_WORKING_DIR;
let apps;
if (cdApp.includes("\n")) {
apps = yamlLoadAll(cdApp);
} else {
apps = cdApp.split(",").map((name) => ({ name }));
}
const envs = cdEnv.split(",");
for (const app of apps) {
for (const env of envs) {
const { name, key = cdKey, tag = defaultTag } = app;
const valuesFile = `apps/${name}/envs/${env}/values.yaml`;
const keys = key.split(",")
const valuesFilePath = `${workingDir}/${valuesFile}`;
const valuesRaw = await fs.readFile(valuesFilePath, { encoding: "utf-8" })
const values = yaml.parse(valuesRaw);
for(const k of keys){
console.log(`${valuesFile} -> ${k}=${tag}`);
set(values, k, tag);
}
await fs.writeFile(valuesFilePath, yaml.stringify(values));
}
}
};
main();