We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35bbb1 commit a1d5429Copy full SHA for a1d5429
.travis.yml
@@ -0,0 +1,34 @@
1
+language: ruby
2
+sudo: false
3
+git:
4
+ depth: false
5
+cache: bundler
6
+before_install:
7
+ - wget https://raw.githubusercontent.com/progit/progit2-pub/master/bootstrap.sh
8
+ - sh bootstrap.sh
9
+script: bundle exec rake book:build
10
+after_success: bundle exec rake book:tag
11
+deploy:
12
+ provider: releases
13
+ file_glob: true
14
+ file:
15
+ - progit*.epub
16
+ - progit*.mobi
17
+ - progit*.pdf
18
+ skip_cleanup: true
19
+ on:
20
+ tags: true
21
+ api-key: $GITHUB_API_TOKEN
22
+branches:
23
+ only:
24
+ - master
25
+ - /^2\.1(\.\d+)+$/
26
+
27
+addons:
28
+ apt:
29
+ packages:
30
+ - epubcheck
31
+notifications:
32
+ email:
33
+ on_success: never
34
+ on_failure: always
0 commit comments