Skip to content

Commit

Permalink
Update boolean for ignoring link check errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Compton authored and nikitawootten-nist committed Dec 6, 2023
1 parent 684de38 commit 3e95677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
# Deploy if on main branch and EITHER the linkcheck succeeds or ignore_linkcheck has been flipped
# crucially ignore periodic checks
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (steps.linkcheck.outcome == 'success' || github.event.inputs.ignore_linkcheck)
if: github.ref == 'refs/heads/main' && ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (steps.linkcheck.outcome == 'success' || github.event.inputs.ignore_linkcheck == 'true') }}
with:
personal_token: ${{ secrets.COMMIT_TOKEN }}
enable_jekyll: false
Expand Down

0 comments on commit 3e95677

Please sign in to comment.