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 bce2b33 commit 1bf56b3Copy full SHA for 1bf56b3
.travis.yml
@@ -11,8 +11,7 @@ script:
11
- go test $(go list ./... | grep -v vendor)
12
- make
13
after_success:
14
- - if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
15
- make container;
+ - if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
16
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
17
- docker push quay.io/k8scsi/csi-attacher:canary;
+ make push;
18
fi
Makefile
@@ -16,7 +16,7 @@
REGISTRY_NAME=quay.io/k8scsi
IMAGE_NAME=csi-attacher
19
-IMAGE_VERSION=canary
+IMAGE_VERSION=v0.4.0
20
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(IMAGE_VERSION)
21
22
REV=$(shell git describe --long --tags --match='v*' --dirty)
0 commit comments