Skip to content

Commit 1bf56b3

Browse files
committed
Allow release-0.4 branch to push
1 parent bce2b33 commit 1bf56b3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ script:
1111
- go test $(go list ./... | grep -v vendor)
1212
- make
1313
after_success:
14-
- if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
15-
make container;
14+
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
1615
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
17-
docker push quay.io/k8scsi/csi-attacher:canary;
16+
make push;
1817
fi

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
REGISTRY_NAME=quay.io/k8scsi
1818
IMAGE_NAME=csi-attacher
19-
IMAGE_VERSION=canary
19+
IMAGE_VERSION=v0.4.0
2020
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(IMAGE_VERSION)
2121

2222
REV=$(shell git describe --long --tags --match='v*' --dirty)

0 commit comments

Comments
 (0)