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 31604c6 commit e536d0fCopy full SHA for e536d0f
.travis.yml
@@ -0,0 +1,19 @@
1
+# https://travis-ci.org/#!/phlax/envoy-docs
2
+
3
+dist: bionic
4
5
+script:
6
+ - export COMPOSE_FILE=./composition/docker-compose.yml
7
+ - docker build -f build_container/Dockerfile-docs -t phlax/envoy-build build_container
8
+ - docker images
9
10
+before_deploy:
11
+ - echo $DOCKER_ACCESS_TOKEN | docker login -u phlax --password-stdin
12
13
+deploy:
14
+ provider: script
15
+ script: docker push phlax/envoy-build
16
+ skip_cleanup: true
17
+ on:
18
+ all_branches: true
19
+ condition: $TRAVIS_BRANCH =~ ^(master)$
0 commit comments