From c1a994e5bd1470605e43e3f62d6bc902eb2c2b9d Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 18 Sep 2021 08:27:17 -0500 Subject: [PATCH] fix: fix matchersPath --- src/python/python.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/python.ts b/src/python/python.ts index 5e2944bc..5b67d737 100644 --- a/src/python/python.ts +++ b/src/python/python.ts @@ -29,7 +29,7 @@ export async function setupPython(version: string, setupCppDir: string, arch: st const installed = await finder.findPythonVersion(version, arch) core.info(`Successfully setup ${installed.impl} (${installed.version})`) } - const matchersPath = path.join(__dirname, "..", ".github") + const matchersPath = path.join("setup-pthon", ".github") core.info(`##[add-matcher]${path.join(matchersPath, "python.json")}`) return undefined } catch (err) {