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

View File

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