Skip to content

Commit 2db8932

Browse files
committed
chore: rename repo to spec-prod
1 parent 4462d16 commit 2db8932

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# W3C Deploy
1+
# Spec Prod
22

33
This GitHub Action lets you:
44

@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-20.04
3131
steps:
3232
- uses: actions/checkout@v2
33-
- uses: sidvishnoi/w3c-deploy@v1
33+
- uses: sidvishnoi/spec-prod@v1
3434
with:
3535
GH_PAGES_BRANCH: gh-pages
3636
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: W3C Deploy
1+
name: Spec Prod
22
author: "Sid Vishnoi"
33
description: "Build ReSpec/Bikeshed specs, validate output and publish to w3.org or GitHub pages"
44

deploy-gh-pages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const { targetBranch, token, event, sha, repository, actor } = inputs;
1818
main().catch(error => exit(error));
1919

2020
async function main() {
21-
const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "w3c-deploy-output-"));
21+
const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "spec-prod-output-"));
2222
const tmpOutputFile = path.join(tmpDir, outputFile);
2323
let error = null;
2424
try {

docs/examples.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-20.04
1616
steps:
1717
- uses: actions/checkout@v2
18-
- uses: sidvishnoi/w3c-deploy@v1
18+
- uses: sidvishnoi/spec-prod@v1
1919
```
2020
2121
### Selectivly enable/disable validators
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-20.04
3434
steps:
3535
- uses: actions/checkout@v2
36-
- uses: sidvishnoi/w3c-deploy@v1
36+
- uses: sidvishnoi/spec-prod@v1
3737
with:
3838
VALIDATE_LINKS: false
3939
VALIDATE_MARKUP: true
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-20.04
5555
steps:
5656
- uses: actions/checkout@v2
57-
- uses: sidvishnoi/w3c-deploy@v1
57+
- uses: sidvishnoi/spec-prod@v1
5858
with:
5959
TOOLCHAIN: respec # or bikeshed
6060
```
@@ -79,14 +79,14 @@ jobs:
7979
runs-on: ubuntu-20.04
8080
steps:
8181
- uses: actions/checkout@v2
82-
- uses: sidvishnoi/w3c-deploy@v1
82+
- uses: sidvishnoi/spec-prod@v1
8383
with:
8484
GH_PAGES_BRANCH: gh-pages
8585
```
8686

8787
## Deploy to W3C using Echidna
8888

89-
Presently, only ReSpec documents are supported. See [#12](https://github.com/sidvishnoi/w3c-deploy/issues/12).
89+
Presently, only ReSpec documents are supported. See [#12](https://github.com/sidvishnoi/spec-prod/issues/12).
9090

9191
```yaml
9292
# .github/workflows/pr-push.yml
@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-20.04
102102
steps:
103103
- uses: actions/checkout@v2
104-
- uses: sidvishnoi/w3c-deploy@v1
104+
- uses: sidvishnoi/spec-prod@v1
105105
with:
106106
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
107107
# Replace following with appropriate values. See options.md for details.

0 commit comments

Comments
 (0)