Daily redeploy #250
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
| # .github/workflows/main.yml | |
| name: Daily redeploy | |
| on: | |
| schedule: | |
| - cron: "0 4 * * *" # 04:00 UTC = 05:00 in Berlin today (CET) | |
| workflow_dispatch: {} # allow manual runs from the Actions tab | |
| jobs: | |
| redeploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Vercel deploy hook | |
| run: curl -fsS -X POST "$VERCEL_DEPLOY_HOOK_URL" | |
| env: | |
| VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_URL }} |