develop
master
組合釋出參數
$GITHUB_OUTPUT
akkuman/gitea-release-action
with.name
with.tag_name
steps.release-params.outputs.*
env
"$NAME $VERSION"
with:
action.yml
dca33f0
fix(action.yml): 修正釋出名稱參數組合
<repository-name> <version>
v<version>
No dependencies set.
The note is not visible to the blocked user.
變更摘要
組合釋出參數step,先用 bash 組合 release name 與 tag name,再寫入$GITHUB_OUTPUT。akkuman/gitea-release-action的with.name與with.tag_name改為讀取steps.release-params.outputs.*。env搭配"$NAME $VERSION"的寫法,避免with:收到未展開的字面字串。影響範圍
action.yml:影響釋出名稱與 tag 名稱傳入 release action 的方式。Commit
dca33f0fix(action.yml): 修正釋出名稱參數組合風險與注意事項
組合釋出參數step 需要 runner 提供 bash,符合目前 composite action 的寫法。with.name會取得已組合完成的<repository-name> <version>,with.tag_name會取得v<version>。