From a439f9638468f40a25ae065fc8eda463ba6819db Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 18 Oct 2019 15:02:09 +0200 Subject: [PATCH] Also deploy site on schedule event --- .github/workflows/build-site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml index f9a4806d..8f0d14d0 100644 --- a/.github/workflows/build-site.yml +++ b/.github/workflows/build-site.yml @@ -71,7 +71,7 @@ jobs: name: "Deploy Generated Site" runs-on: ubuntu-latest needs: [build_site, check_spelling] - if: github.ref == 'refs/heads/master' && github.event_name == 'push' + if: github.ref == 'refs/heads/master' && (github.event_name == 'push' || github.event_name == 'schedule') steps: - name: "Download Generated Site"