We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d61302c commit e291c86Copy full SHA for e291c86
1 file changed
.github/workflows/deploy-pages.yml
@@ -43,14 +43,14 @@ jobs:
43
# Cloud-side fallback only: prefer frontend-first runtime.
44
# This step updates SSG-bundled snapshots under `app/static/crawler/data/**`.
45
continue-on-error: true
46
- timeout-minutes: 15
+ timeout-minutes: 6
47
run: |
48
if [ -z "${JWXT_USERID:-}" ] || [ -z "${JWXT_PASSWORD:-}" ]; then
49
echo "JWXT secrets not set; skip crawl"
50
exit 0
51
fi
52
set +e
53
- npm run crawl:jwxt
+ timeout 240s npm run crawl:jwxt
54
code="$?"
55
set -e
56
if [ "$code" -ne 0 ]; then
0 commit comments