Skip to content

Commit

Permalink
fix: fix config path
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsn committed Feb 8, 2023
1 parent 3e368d6 commit 8c5e57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down

0 comments on commit 8c5e57e

Please sign in to comment.