13 lines
399 B
Bash
13 lines
399 B
Bash
#!/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 "$@"
|