We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4526a60 + b13b7d6 commit f00735bCopy full SHA for f00735b
.travis.yml
@@ -0,0 +1,31 @@
1
+sudo: required
2
+
3
+branches:
4
+ only:
5
+ - master
6
7
+services:
8
+ - docker
9
10
+before_install:
11
+ - mkdir -p output
12
+ - docker pull asciidoctor/docker-asciidoctor
13
14
+script:
15
+ - docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-html asciidoctor/docker-asciidoctor asciidoctor --destination-dir=/documents/output --out-file=index.html asciidoc-markup-sample-doc/asciidoc-markup-samples.adoc
16
17
+after_error:
18
+ - docker logs asciidoc-to-html
19
+ - docker logs asciidoc-to-pdf
20
21
+after_failure:
22
23
24
25
+deploy:
26
+ provider: pages
27
+ skip_cleanup: true
28
+ github_token: $GH_TOKEN
29
+ local_dir: output
30
+ on:
31
+ branch: master
0 commit comments