From eb41429bc92d11d2bd889cdda12356adc32b9edd Mon Sep 17 00:00:00 2001 From: Pomax Date: Mon, 26 Aug 2024 17:38:33 -0700 Subject: [PATCH] fix github actions --- server/changelog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/changelog.js b/server/changelog.js index 27abf34..ab5d287 100644 --- a/server/changelog.js +++ b/server/changelog.js @@ -3,7 +3,7 @@ const path = require('path'); const { exec } = require('child_process'); const { version } = require('../package.json'); -const CHANGELOG_PATH = path.resolve(__dirname, '../changelog.md'); +const CHANGELOG_PATH = path.resolve(__dirname, '../CHANGELOG.md'); const ignoredFiles = ['lib/index.js', 'lib/stories.js', 'changelog.md', 'package.json', 'package-lock.json']; const getGitDiff = () =>