Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/capture-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
run: |
# --no-sandbox is required because Ubuntu 24.04+ runners disable unprivileged
# user namespaces via AppArmor, making the Chromium sandbox unavailable in CI.
# --disable-dev-shm-usage prevents renderer crashes caused by the default
# 64 MB /dev/shm limit on GitHub Actions runners, which would otherwise cause
# a silent hang and a navigation timeout.
capture-website \
--type webp \
--quality=0.7 \
Expand All @@ -52,7 +55,7 @@ jobs:
--delay=15 \
--timeout=120 \
--throw-on-http-error \
--launch-options='{"headless":"new","args":["--no-sandbox"]}' \
--launch-options='{"headless":true,"args":["--no-sandbox","--disable-dev-shm-usage"]}' \
--output surface.webp \
--overwrite \
https://surface.axone.xyz/
Expand Down
Loading