We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9efcecc commit 1dec93aCopy full SHA for 1dec93a
.github/workflows/pages.yml
@@ -39,9 +39,8 @@ jobs:
39
40
- name: Build website
41
run: |
42
- yarn build 2>&1 | tee build.log
43
- MARKDOWN_COUNT=$(grep -c "Generated markdown file:" build.log || true)
44
- echo "Generated $MARKDOWN_COUNT LLM markdown files" >> $GITHUB_STEP_SUMMARY
+ set -o pipefail
+ yarn build 2>&1 | { grep -v "^Generated markdown file:" || true; }
45
env:
46
NODE_OPTIONS: --max-old-space-size=8192
47
DOCUSAURUS_IGNORE_SSG_WARNINGS: true
0 commit comments