Files
cleanup-release/entrypoint.sh
T
jiantw83 818532fda5
CI / 2. TEST (pull_request) Failing after 1s
CI / 3. RESULT (pull_request) Has been skipped
CI / 1. BUILD (pull_request) Successful in 2s
fix(entrypoint): 恢復啟動腳本可執行權限
2026-07-11 13:16:38 +00:00

13 lines
399 B
Bash
Executable File

#!/bin/sh
# 檔案用途:啟動 action 容器時輸出識別資訊,並交由 Node 主程式執行
# 更新日期:2026/07/11 21:02:25
set -e
ts=$(TZ='Asia/Taipei' date +'%Y/%m/%d %H:%M:%S')
printf '[INF][%s]: Action: CLEANUP OLD RELEASES\n' "$ts"
printf '[INF][%s]: 用途: 清理舊版成品\n' "$ts"
printf '[INF][%s]: 更新時間: 2026/07/11\n' "$ts"
exec node /action/src/index.js "$@"