Skip to content

Commit

Permalink
[meta] Handle non-bikeshed specs in build-specs.yml
Browse files Browse the repository at this point in the history
Fixes #8824
  • Loading branch information
Loirooriol committed May 10, 2023
1 parent 8c4867d commit bdbe1db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
- name: Build specs
run: |
set -e
# Handle non-bikeshed specs.
for file in ./**/Overview.html; do
cp "$file" "$(dirname "$file")/index.html"
done
# Handle bikeshed specs.
for file in ./**/Overview.bs; do
# We use `date` to build a YYYY-MM-DD date rather than using git's
# `--format=%as` because we want the date not to depend on the
Expand Down

0 comments on commit bdbe1db

Please sign in to comment.