백그라운드 실행(&) 부분 제거
Some checks failed
Run Report Table / run-script (push) Failing after 8s

This commit is contained in:
kyy
2025-09-05 13:39:06 +09:00
parent 5874999a85
commit c51523d5cd
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
name: Run Report Table
on:
schedule:
- cron: "30 4 * * *"
- cron: "41 4 * * *"
jobs:
run-script:
runs-on: ubuntu-latest

View File

@@ -15,8 +15,8 @@ TS="$(date +%Y%m%d_%H%M%S)"
LOG_FILE="${LOG_DIR}/report_${ABSOLUTE_RANGE}_${TS}.log"
(cd src && python3 -m report_table \
--range "${ABSOLUTE_RANGE}") \
>> "${LOG_FILE}" 2>&1 &
--range "${ABSOLUTE_RANGE}") \
>> "${LOG_FILE}" 2>&1
echo "[OK] Started background job."
echo "[OK] Logging to ${LOG_FILE}"