Skip to content

Daily redeploy

Daily redeploy #250

Workflow file for this run

# .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 }}