From 3b7f7ff543dcde7d65599beb79cc938e8f0d4bcd Mon Sep 17 00:00:00 2001
From: WANG Xuerui <git@xen0n.name>
Date: Mon, 23 Dec 2024 15:06:37 +0800
Subject: [PATCH] feat: log when each asset is successfully uploaded

Signed-off-by: WANG Xuerui <git@xen0n.name>
---
 src/github.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/github.ts b/src/github.ts
index d970132..b7ce3d2 100644
--- a/src/github.ts
+++ b/src/github.ts
@@ -198,6 +198,7 @@ export const upload = async (
         }\n${json.message}\n${JSON.stringify(json.errors)}`,
       );
     }
+    console.log(`✅ Uploaded ${name}`);
     return json;
   } finally {
     await fh.close();