We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd131b5 commit 78be96eCopy full SHA for 78be96e
1 file changed
.github/workflows/ci.yml
@@ -397,6 +397,13 @@ jobs:
397
- name: Apply submodule patches
398
run: if ls patches/*.patch 1>/dev/null 2>&1; then cd zeroclaw && git apply ../patches/*.patch; fi
399
400
+ - name: Ensure embedded web assets exist
401
+ run: |
402
+ mkdir -p zeroclaw/web/dist
403
+ if [ ! -f zeroclaw/web/dist/index.html ]; then
404
+ printf '%s\n' '<!doctype html><html><body>OpenClaw Web UI placeholder</body></html>' > zeroclaw/web/dist/index.html
405
+ fi
406
+
407
- uses: actions/setup-java@v4
408
with:
409
distribution: temurin
0 commit comments