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 ea9018f commit cd7b6d1Copy full SHA for cd7b6d1
.travis.yml
@@ -8,17 +8,11 @@ env:
8
script:
9
- go test -v -race ./service
10
11
-after_success:
12
- - |
13
- if [ -n "$TRAVIS_TAG" ];
14
- then
15
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
16
- make build push;
17
- fi
18
-
19
deploy:
20
- provider: script
21
skip_cleanup: true
22
- script: curl -sL https://git.io/goreleaser | bash
+ script: |
+ echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin &&
+ curl -sL https://git.io/goreleaser | bash
23
on:
24
tags: true
0 commit comments