aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorFlorian Walch <florian@fwalch.com>2015-01-14 08:51:16 +0100
committerFlorian Walch <florian@fwalch.com>2015-01-14 09:25:14 +0100
commit9e7909b62e42c854daa061a48909b569e72f23bb (patch)
treef28e32c7e61621e73f3aea990f221dbeab78737e /.travis.yml
parentc9322e4e622d65f3dc4eb96c8e37a778a011e9e3 (diff)
downloaduBlock-9e7909b62e42c854daa061a48909b569e72f23bb.zip
uBlock-9e7909b62e42c854daa061a48909b569e72f23bb.tar.gz
uBlock-9e7909b62e42c854daa061a48909b569e72f23bb.tar.bz2
Set up Travis releases.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..861c818
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+sudo: false
+env:
+ matrix:
+ - BROWSER=chromium EXT=zip
+ - BROWSER=firefox EXT=xpi
+script: ./tools/make-${BROWSER}.sh all
+deploy:
+ provider: releases
+ api_key:
+ secure: TODO: your key here!
+ file: dist/build/uBlock.${BROWSER}.${EXT}
+ skip_cleanup: true
+ on:
+ repo: gorhill/uBlock
+ tags: true
+ all_branches: true