Skip to content

Commit

Permalink
Set suppress_errors=false in Franklin build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
staticfloat authored Jul 10, 2024
1 parent a080218 commit 073f4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 073f4bf

Please sign in to comment.