diff --git a/.gitignore b/.gitignore index 3c3629e..fd71254 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -node_modules +.envrc + +node_modules/ diff --git a/dist/index.js b/dist/index.js index 363fd41..da0842c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12126,7 +12126,7 @@ const main = async () => { const files = await retrieveFiles(group, ref) if (Array.isArray(files)) { for (const _file of files) { - const file = await retrieveFile(_file.path) + const file = await retrieveFile(_file.path, ref) await processVariables(file) } } else { diff --git a/index.js b/index.js index 26ef99c..baa5fc9 100644 --- a/index.js +++ b/index.js @@ -106,7 +106,7 @@ const main = async () => { const files = await retrieveFiles(group, ref) if (Array.isArray(files)) { for (const _file of files) { - const file = await retrieveFile(_file.path) + const file = await retrieveFile(_file.path, ref) await processVariables(file) } } else {