Skip to content

Commit 3c8a570

Browse files
committed
fix: prevent broken pipe errors in site build process
1 parent 5229273 commit 3c8a570

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/wiki.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ jobs:
8787
echo "$HOME/.markflow" >> $GITHUB_PATH
8888
8989
- name: Build site
90+
shell: bash
9091
run: |
92+
# Ignore SIGPIPE to prevent broken pipe errors in markflow
93+
trap '' PIPE
94+
9195
mkdir -p site
9296
9397
# Copy website landing page to site root

0 commit comments

Comments
 (0)