From 3e9b77439056885c8406002a55f1e6fa4d84c6fd Mon Sep 17 00:00:00 2001 From: Vamsi Krishna Date: Tue, 15 Dec 2020 13:32:22 +0530 Subject: [PATCH] Fix cron build job As YAML parsers misinterpret `*`, strings need to be explicit. --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 59299abf..0d440a3f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,7 @@ on: pull_request: branches: [ hugo ] schedule: - - cron: 25 0 * * * + - cron: '25 0 * * *' jobs: build: