From bc9977a16f0a996aebccda403ceb51b65c28dddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=B8=9C=E4=BA=91?= Date: Tue, 19 Aug 2025 09:48:49 +0800 Subject: [PATCH] =?UTF-8?q?ci(gitea):=20=E6=9B=B4=E6=96=B0=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E6=B5=81=E7=A8=8B=E5=B9=B6=E7=AE=80=E5=8C=96=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 zip 文件名,使用更通用的 dist.zip - 移除版本号中的 "-alpha" 后缀,简化版本号格式 Signed-off-by: 李东云 --- .gitea/workflows/publish_on_tagged.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/publish_on_tagged.yml b/.gitea/workflows/publish_on_tagged.yml index c8b2f82..33caf21 100644 --- a/.gitea/workflows/publish_on_tagged.yml +++ b/.gitea/workflows/publish_on_tagged.yml @@ -19,10 +19,10 @@ jobs: run: | apt-get update apt-get install zip - zip -r hdk-core.dist.zip * + zip -r dist.zip * - name: Publish to registry run: | curl --user ch4o5:4fd300672472e666014314c1c94c604c634165a9 \ - --upload-file ./hdk-core.dist.zip \ - https://nest.doylee.cn/api/packages/HDK/composer?version=${{ gitea.ref_name }}-alpha + --upload-file ./dist.zip \ + https://nest.doylee.cn/api/packages/HDK/composer?version=${{ gitea.ref_name }} - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file