WIP: Build & Release

This commit is contained in:
Michał Zieliński
2025-02-12 18:41:28 +01:00
parent 6b8e3ecb32
commit 466c08f8e4

View File

@@ -25,7 +25,7 @@ module.exports = async ({ github, context, core, jobId }) => {
core.setFailed(`Token ${token} not found`); core.setFailed(`Token ${token} not found`);
return false; return false;
} }
data = data.replace(new RegExp(`#{${original}}#`, 'g'), value); data = data.replace(new RegExp(original, 'g'), value);
console.log(`Replaced ${original} with ${value} (${token}) in ${file}`); console.log(`Replaced ${original} with ${value} (${token}) in ${file}`);
console.log(data); console.log(data);
} }