From d67838e5786c2eec2084db89e3a60f3587b9b4d9 Mon Sep 17 00:00:00 2001 From: WANG Xuerui Date: Mon, 23 Dec 2024 15:15:11 +0800 Subject: [PATCH] style: format with prettier Signed-off-by: WANG Xuerui --- src/github.ts | 2 +- src/util.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/github.ts b/src/github.ts index b7ce3d2..a43e504 100644 --- a/src/github.ts +++ b/src/github.ts @@ -188,7 +188,7 @@ export const upload = async ( "content-type": mime, authorization: `token ${config.github_token}`, }, - data: fh.readableWebStream({type: "bytes"}), + data: fh.readableWebStream({ type: "bytes" }), }); const json = resp.data; if (resp.status !== 201) { diff --git a/src/util.ts b/src/util.ts index 08dcd21..20d5c2d 100644 --- a/src/util.ts +++ b/src/util.ts @@ -112,4 +112,4 @@ export const isTag = (ref: string): boolean => { export const alignAssetName = (assetName: string): string => { return assetName.replace(/ /g, "."); -}; \ No newline at end of file +};