From 073f4bff0932a073e06b71b092121c145266f3dd Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Wed, 10 Jul 2024 11:01:50 +0200 Subject: [PATCH] Set `suppress_errors=false` in Franklin build We broke the JuliaCon website on the first day because an error was suppressed. The error had been live for a while, but a change to surrounding code caused it to move from minor annoyance to catastrophic. This moves us to a stricter mode where such errors are not allowed at all. --- .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 b4659a2dd..8cce03f20 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -49,7 +49,7 @@ jobs: Pkg.instantiate() using Franklin - optimize(minify=false, prerender=false) + optimize(minify=false, prerender=false, suppress_errors=false) - name: Deploy (preview) if: github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork # if this build is a PR build and the PR is NOT from a fork uses: JamesIves/github-pages-deploy-action@releases/v4