We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92c1e7 commit 1e18d5fCopy full SHA for 1e18d5f
src/releases.mjs
@@ -38,9 +38,9 @@ const createNodeReleases = changelogPath => {
38
const changelogUrl = new URL(changelogPath);
39
40
const changelogStrategy =
41
- changelogUrl.protocol === 'https:'
42
- ? getChangelogFromNetwork(changelogUrl)
43
- : getChangelogFromFileSystem(changelogUrl);
+ changelogUrl.protocol === 'file:'
+ ? getChangelogFromFileSystem(changelogUrl)
+ : getChangelogFromNetwork(changelogUrl);
44
45
/**
46
* Retrieves all Node.js major versions from the provided CHANGELOG.md file
0 commit comments