Skip to content

Commit 32952cd

Browse files
authored
chore(release_script): remove unused files (#1083)
1 parent c3ca2e6 commit 32952cd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/release/release.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,7 @@ async function main() {
267267
git("branch", "-D", TMP_BRANCH);
268268
git("checkout", "-b", TMP_BRANCH);
269269
replaceInFile(GO_VERSION_PATH, /Version = "[^"]*"/, `Version = "v${newVersion}+dev"`);
270-
replaceInFile(VERSION_TEST_GOLDEN_PATH, /\([^)]*\)/, `(${newVersion})`)
271-
git("add", GO_VERSION_PATH, VERSION_TEST_GOLDEN_PATH);
270+
git("add", GO_VERSION_PATH);
272271
git("commit", "-m", `chore: cleanup after v${newVersion} release`);
273272
git("push", "-f", "--set-upstream", TMP_REMOTE, TMP_BRANCH);
274273
git("checkout", GITHUB_RELEASED_BRANCH);

0 commit comments

Comments
 (0)