We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a91bf commit f11b86fCopy full SHA for f11b86f
1 file changed
.github/workflows/wiki.yml
@@ -82,14 +82,13 @@ jobs:
82
uses: actions/checkout@v4
83
84
- name: Install Markflow
85
- run: |
86
- curl -sL https://raw.githubusercontent.com/darmie/markflow/main/install.sh | bash
87
- # Fix broken pipe: echo to closed grep pipe on Linux (grep -m1 exits early, SIGPIPE kills echo)
88
- sed -i 's/echo "$content" | grep/{ echo "$content" || true; } | grep/g' "$HOME/.markflow/markflow"
+ run: curl -sL https://raw.githubusercontent.com/darmie/markflow/main/install.sh | bash
89
90
- name: Build site
91
run: |
92
export PATH="$HOME/.markflow:$PATH"
+ # Raise ARG_MAX for large pre-baked content (16 chapters exceed default ~2MB limit)
+ ulimit -s unlimited
93
mkdir -p site
94
95
# Copy website landing page to site root
0 commit comments