Skip to content

Daily Rebuild

Daily Rebuild #111

Workflow file for this run

name: Daily Rebuild
on:
schedule:
# Run daily at 00:00 UTC (midnight)
- cron: "0 0 * * *"
workflow_dispatch: # Allow manual triggering
jobs:
rebuild:
runs-on: ubuntu-latest
steps:
- name: Trigger Vercel Deployment
run: |
curl -X POST "$VERCEL_DEPLOY_HOOK_URL"
env:
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_URL }}