Skip to content

Commit e8da756

Browse files
committed
fix: stop doc zip creation
Doc does not need to be zipped so comment it out
1 parent d209f32 commit e8da756

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

release.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ const getChangelog = async (prev: string, curr: string): Promise<string> => {
6767
}`;
6868
};
6969

70-
const zipDocs = async () => {
71-
if (!dryRun) {
72-
await exec(["zip", "-r", "docs.zip", "docs"]);
73-
}
74-
};
70+
// const zipDocs = async () => {
71+
// if (!dryRun) {
72+
// await exec(["zip", "-r", "docs.zip", "docs"]);
73+
// }
74+
// };
7575

7676
const openReleasePage = async (version: string) => {
7777
const url = `https://github.com/rickcogley/hibana/releases/tag/${version}`;
@@ -118,8 +118,8 @@ const main = async () => {
118118
console.log(changelogEntry);
119119
await appendText("CHANGELOG.md", changelogEntry);
120120

121-
console.log("Zipping docs...");
122-
await zipDocs();
121+
// console.log("Zipping docs...");
122+
// await zipDocs();
123123

124124
if (!dryRun) {
125125
console.log("Creating git tag...");

0 commit comments

Comments
 (0)