Skip to content

Commit 1e39105

Browse files
sideshowbarkerandreastt
authored andcommitted
Re-enable autopublishing (#1415)
This reverts commit 0d62ec6.
1 parent 36560af commit 1e39105

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@ node_js: "node"
33
cache: npm
44
#before_script: npm install -g respec
55
script: make test
6+
7+
deploy:
8+
provider: script
9+
script: ./publish
10+
on:
11+
branch: master

echidna-manifest.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Manifest file for Echidna (automatic publication)
2+
index.html?specStatus=WD;shortName=webdriver respec
3+
issue.js
4+
graphics/note1actions.svg
5+
graphics/note2actions.svg
6+
graphics/note3actions.svg
7+
graphics/note4actions.svg

publish

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
if [ -z "$ECHNIDA_TOKEN" ]
4+
then
5+
>&2 echo "$0: error: ECHNIDA_TOKEN not set"
6+
exit 65
7+
fi
8+
9+
curl https://labs.w3.org/echidna/api/request \
10+
--data "url=https://w3c.github.io/webdriver/echidna-manifest.txt" \
11+
--data "decision=https://lists.w3.org/Archives/Public/public-browser-tools-testing/2015JulSep/0009.html" \
12+
--data "token=$ECHNIDA_TOKEN"

0 commit comments

Comments
 (0)