From 8c5e57e50f1c1743b7030686a841b8326022bdf7 Mon Sep 17 00:00:00 2001 From: nmsn <136696700@qq.com> Date: Wed, 8 Feb 2023 10:28:16 +0800 Subject: [PATCH] fix: fix config path --- src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.ts b/src/github.ts index d51f99f..f1481d2 100644 --- a/src/github.ts +++ b/src/github.ts @@ -17,7 +17,7 @@ const getCurrentPackageGithubInfo = () => { }; export const getGithubToken = () => { - const configPath = path.join(process.cwd(), 'release-toolbox2.json'); + const configPath = path.join(process.cwd(), 'release-toolbox.json'); try { const { GITHUB_TOKEN } = JSON.parse(fs.readFileSync(configPath, 'utf-8'));