From bf683d3657a603f34aa18b49809c988ee2175072 Mon Sep 17 00:00:00 2001 From: "Y. Meyer-Norwood" <106889957+norwd@users.noreply.github.com> Date: Thu, 21 Nov 2024 09:39:07 +1300 Subject: [PATCH] Deploy website once a month to keep things current --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d03b827..ea7e0fe 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,10 +2,15 @@ name: "Deploy GitHub Pages" run-name: "Deploy GitHub Pages" on: - workflow_dispatch: + + schedule: + - cron: '0 0 1 * *' + push: branches: [main] + workflow_dispatch: + permissions: contents: read pages: write