From 5d584f26bd88bdb4e43f12b4e58ed6a12ebe00db Mon Sep 17 00:00:00 2001 From: Jeffery Date: Thu, 25 Jun 2026 15:55:34 +0000 Subject: [PATCH] fix(action.yml): fix string interpolation for name and tag_name in release step --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index fd9f0b4..4291181 100644 --- a/action.yml +++ b/action.yml @@ -17,8 +17,8 @@ runs: NAME: ${{ gitea.repository##*/ }} VERSION: v${{ steps.version-calculate.outputs.version }} with: - name: $NAME $VERSION - tag_name: $VERSION + name: "$NAME $VERSION" + tag_name: "$VERSION" target_commitish: ${{ gitea.ref }} files: ${{ inputs.files }} - name: 清理舊成品