From 89aa237d513a407aad9342d71fce3b09cc464320 Mon Sep 17 00:00:00 2001 From: eikek Date: Mon, 7 Feb 2022 00:52:47 +0100 Subject: [PATCH 1/2] Skip zola check for deploying the site There are some 404s on external urls that seem ephemeral --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index baff161a..dd23663b 100644 --- a/build.sbt +++ b/build.sbt @@ -1038,5 +1038,5 @@ addCommandAlias( "fix", "headerCreateAll; Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll" ) -addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck") +addCommandAlias("make-website", ";website/clean ;website/zolaBuild") addCommandAlias("publish-website", "website/publishToGitHubPages") From dcea9a8f0621eb064ea9ea7058300f98e267016f Mon Sep 17 00:00:00 2001 From: eikek Date: Mon, 7 Feb 2022 23:55:57 +0100 Subject: [PATCH 2/2] Re-add zola check --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index dd23663b..baff161a 100644 --- a/build.sbt +++ b/build.sbt @@ -1038,5 +1038,5 @@ addCommandAlias( "fix", "headerCreateAll; Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll" ) -addCommandAlias("make-website", ";website/clean ;website/zolaBuild") +addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck") addCommandAlias("publish-website", "website/publishToGitHubPages")