From 14cfa4d91643a0cb89c8d67b7dec530dcf6d0a86 Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Wed, 4 Oct 2023 11:42:38 +0300 Subject: [PATCH] Update file paths Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com> --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 094d64e..6348155 100644 --- a/index.js +++ b/index.js @@ -11,7 +11,7 @@ async function run() { console.log(`CWD: ${process.cwd()}`) console.log(`filePath: ${core.getInput('filePath')}`) - const patterns = ['**/*.csproj', '**/package.json'] + const patterns = ['src/**/*.csproj', 'package.json'] const globber = await glob.create(patterns.join('\n')) const files = await globber.glob() console.log("files: ", files)