We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a501cf commit f460b71Copy full SHA for f460b71
.travis.yml
@@ -12,11 +12,17 @@ jobs:
12
include:
13
- stage: "build"
14
name: "Build"
15
- script: builds/build.sh
+ script:
16
+ - go build -o deckhand
17
- stage: deploy
18
install: skip
19
name: "Deploying docker image"
- script: builds/docker_push.sh
20
21
+ - echo "Logging into Docker"
22
+ - docker login -u=$DOCKER_USER -p=$DOCKER_PASS quay.io
23
+ - docker build -t deckhand .
24
+ - docker tag deckhand quay.io/nfons/deckhand:$TRAVIS_BRANCH
25
+ - docker push quay.io/nfons/deckhand:$TRAVIS_BRANCH
26
27
stages:
28
- install
builds/build.sh
builds/docker_push.sh
builds/install_deps.sh
0 commit comments