Skip to content

Commit 22ab5e1

Browse files
committed
fix build errors
1 parent c13b391 commit 22ab5e1

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

scripts/actions/github.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const {
33
getRepoInfo,
44
getSha,
55
tagExists,
6-
//createTag,
76
createRelease,
87
} = require("../utils/github");
98
const {
@@ -55,8 +54,6 @@ async function buildProject() {
5554

5655
buildPath ??= await build(tempjson);
5756

58-
//createTag(version, sha);
59-
6057
const changelog = generateChangelog(version);
6158
await createRelease(version, buildPath, changelog);
6259
} catch (error) {

scripts/utils/github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ async function createRelease(version, tgzPath, body = "") {
5454
console.log(`Release ${version} successfully published.`);
5555
}
5656

57-
module.exports = { getRepoInfo, getSha, tagExists, createTag, createRelease };
57+
module.exports = { getRepoInfo, getSha, tagExists, createRelease };

0 commit comments

Comments
 (0)