We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c4867d commit bdbe1dbCopy full SHA for bdbe1db
.github/workflows/build-specs.yml
@@ -41,6 +41,11 @@ jobs:
41
- name: Build specs
42
run: |
43
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.
49
for file in ./**/Overview.bs; do
50
# We use `date` to build a YYYY-MM-DD date rather than using git's
51
# `--format=%as` because we want the date not to depend on the
0 commit comments