Skip to content

Commit bdbe1db

Browse files
committed
[meta] Handle non-bikeshed specs in build-specs.yml
Fixes w3c#8824
1 parent 8c4867d commit bdbe1db

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-specs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ jobs:
4141
- name: Build specs
4242
run: |
4343
set -e
44+
# Handle non-bikeshed specs.
45+
for file in ./**/Overview.html; do
46+
cp "$file" "$(dirname "$file")/index.html"
47+
done
48+
# Handle bikeshed specs.
4449
for file in ./**/Overview.bs; do
4550
# We use `date` to build a YYYY-MM-DD date rather than using git's
4651
# `--format=%as` because we want the date not to depend on the

0 commit comments

Comments
 (0)