From 5ed95cf943f19a8d51dd0ce9c72691770656914a Mon Sep 17 00:00:00 2001 From: Pete Cheslock Date: Mon, 4 Aug 2025 10:40:03 -0400 Subject: [PATCH] Build and deploy the site daily to get any changes to the upstream docs Signed-off-by: Pete Cheslock --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5d95ca2..c0bb700 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,10 +4,14 @@ name: Build llm-d website # Controls when the workflow will run on: - # Triggers the workflow on push or pull request events but only for the "dev" branch + # Triggers the workflow on push or pull request events but only for the "main" branch push: branches: [ "main" ] + # Runs every night at midnight UTC + schedule: + - cron: '0 0 * * *' + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: