We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a626ba8 commit 11ac845Copy full SHA for 11ac845
1 file changed
scripts/release.js
@@ -14,7 +14,7 @@ if (!process.env.CI && !TEST_BUILD) {
14
15
const isCI = process.env.CI;
16
const githubRef = process.env.GITHUB_REF;
17
-const gitTag = getGithubTag();
+const gitTag = 'v8.0.0'; getGithubTag();
18
const githubEventName = process.env.GITHUB_EVENT_NAME;
19
const repoName = process.env.GITHUB_REPOSITORY;
20
@@ -173,7 +173,7 @@ async function getReleaseNotes() {
173
const result = [];
174
175
for (const line of lines) {
176
- if (line.match(new RegExp(`^## \[${version}\]`))) {
+ if (line.match(new RegExp(`^## \\[${version}\\]`))) {
177
capturing = true;
178
result.push(line);
179
} else if (line.match(/^## \[/) && capturing) {
0 commit comments