GHES에서 지원하는 v3로 변경
All checks were successful
Run Report Table / run-script (push) Successful in 12s

This commit is contained in:
kyy
2025-09-05 12:22:43 +09:00
parent fd6993fe71
commit 8f84e00b3c
2 changed files with 7 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
name: Run Report Table
on:
schedule:
- cron: "05 3 * * *"
- cron: "25 3 * * *"
jobs:
run-script:
runs-on: ubuntu-latest
@@ -35,7 +35,7 @@ jobs:
- name: Upload logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: report-logs
path: logs/table/*.log

View File

@@ -1,8 +1,10 @@
#!/usr/bin/env bash
set -a
source .env
set +a
if [ -f .env ]; then
set -a
source .env
set +a
fi
LOG_DIR="logs/table"
mkdir -p "${LOG_DIR}"