Weekly Rebuild #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Weekly Rebuild | |
| on: | |
| schedule: | |
| # Run weekly at 00:00 UTC on Mondays | |
| - cron: "0 0 * * 1" | |
| 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 }} |