File tree Expand file tree Collapse file tree 3 files changed +27
-6
lines changed
Expand file tree Collapse file tree 3 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,10 @@ jobs:
3434 with :
3535 ruby-version : 3.2
3636 bundler-cache : true
37- - name : Setup Jekyll
38- run : ' gem install bundler jekyll kramdown-parser-gfm webrick'
39- - name : Setup assets
40- run : ' cd docs/site/assets && npm ci && npm run build'
41- - name : Build cldr.pages.dev
42- run : ' cd docs/site && jekyll build'
37+ - name : Build Site
38+ run : ' sh tools/scripts/web/build-site.sh'
39+ - name : ' Remove wrangler.jsonc for now (this is the OLD pages build)'
40+ run : ' rm -f wrangler.jsonc'
4341 - name : Pre-install Wrangler
4442 if : (github.event_name == 'push') || (github.event.pull_request.head.repo.full_name == 'unicode-org/cldr')
4543 run : npm i -g wrangler@3.x
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -x
4+
5+ gem install bundler jekyll kramdown-parser-gfm webrick && \
6+ cd docs/site/assets && \
7+ npm ci && \
8+ npm run build && \
9+ cd .. && \
10+ jekyll build || exit 1
11+
12+ echo ' Output in ./_site'
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " cldr-next" ,
3+ "$schema" : " https://unpkg.com/wrangler/config-schema.json" ,
4+ "compatibility_date" : " 2026-01-20" ,
5+ "assets" : {
6+ "directory" : " ./_site/" ,
7+ "not_found_handling" : " 404-page"
8+ },
9+ "preview_urls" : true ,
10+ "workers_dev" : true
11+ }
You can’t perform that action at this time.
0 commit comments