From e9d2667c959baf60c82519ecd5e24dac5953c4a0 Mon Sep 17 00:00:00 2001 From: Tuan-Dat Tran Date: Mon, 23 Feb 2026 20:02:44 +0100 Subject: [PATCH] fix(release): remove dist assets from github release config Gitea API fails when trying to upload directory assets. Since the project deploys via Docker, the dist files are not needed in the release. --- .releaserc.json | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index b9d876a..06bae43 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -61,13 +61,6 @@ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ], - [ - "@semantic-release/github", - { - "assets": [ - { "path": "dist/**/*", "label": "Distribution" } - ] - } - ] + "@semantic-release/github" ] }