Files
release-cleanup/app/package.json
T
JefferyandClaude Opus 4.8 7ac64709b9 feat(release-cleanup): 改為 Node 主程式並容器化
將 action 由 bash(curl/jq) 改寫為 Node 主程式 app/index.js(沿用原清理邏輯:
正式版與 beta 版各自保留 KEEP_COUNT 筆、刪除多餘 release 與未綁定 release 的 tag),
entrypoint.sh 改為輸出橫幅後 exec node 主程式,Dockerfile 改用 node alpine 六步結構,
並補上 app/package.json 與 action.yaml 輸入說明。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-30 12:41:10 +08:00

14 lines
283 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "release-cleanup",
"version": "1.0.0",
"description": "清理舊成品(Gitea release 與未綁定 release 的 tag",
"author": "Jeffery",
"license": "MIT",
"type": "commonjs",
"main": "index.js",
"private": true,
"engines": {
"node": ">=18"
}
}