WIP: Build & Release

This commit is contained in:
Michał Zieliński
2025-02-12 17:53:15 +01:00
parent c12e77a238
commit cd0dd126fc
2 changed files with 3 additions and 1 deletions

View File

@@ -26,5 +26,6 @@ module.exports = async ({ github, context, core, jobId }) => {
function getValue(token) {
const secrets = JSON.parse(process.env.SECRETS);
return process.env[token] || secrets[token];
const variables = JSON.parse(process.env.VARIABLES);
return variables[token] || secrets[token];
}