Skip to content

Commit 390fa7e

Browse files
Set up repo with spec-prod github action (#129)
* Set up repo with spec-prod github action to update automatically published HTML version from bikeshed * Fix markup
1 parent 3d7680b commit 390fa7e

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/auto-publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Auto-publish
2+
on:
3+
pull_request: {}
4+
push:
5+
paths:
6+
- index.bs
7+
branches: [main]
8+
9+
jobs:
10+
main:
11+
name: Build, Validate and Deploy
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: w3c/spec-prod@v2
16+
with:
17+
GH_PAGES_BRANCH: gh-pages
18+
BUILD_FAIL_ON: link-error

index.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ For example, some implementations may fire <a event for=SpeechRecognition>audioe
406406
<dd>The errorCode is an enumeration indicating what has gone wrong.
407407
The values are:
408408
<dl>
409-
<dt><dfn enum-value for=SpeechRecognitionErrorCode>"no-speech"</code></dt>
409+
<dt><dfn enum-value for=SpeechRecognitionErrorCode>"no-speech"</dfn></dt>
410410
<dd>No speech was detected.</dd>
411411

412412
<dt><dfn enum-value for=SpeechRecognitionErrorCode>"aborted"</dfn></dt>

0 commit comments

Comments
 (0)