File tree 3 files changed +25
-0
lines changed
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,9 @@ node_js: "node"
3
3
cache : npm
4
4
# before_script: npm install -g respec
5
5
script : make test
6
+
7
+ deploy :
8
+ provider : script
9
+ script : ./publish
10
+ on :
11
+ branch : master
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 "
You can’t perform that action at this time.
0 commit comments