Skip to content

Commit 7e7d6bf

Browse files
committed
Push to Quay
1 parent 5cfa08e commit 7e7d6bf

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
@@ -10,8 +10,7 @@ script:
1010
- go vet $(go list ./... | grep -v vendor)
1111
- go test $(go list ./... | grep -v vendor)
1212
after_success:
13-
- if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
14-
make container;
13+
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
1514
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
16-
docker push quay.io/k8scsi/csi-provisioner:canary;
15+
make push;
1716
fi

Makefile

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

1515
REGISTRY_NAME=quay.io/k8scsi
1616
IMAGE_NAME=csi-provisioner
17-
IMAGE_VERSION=canary
17+
IMAGE_VERSION=v0.4.0
1818
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(IMAGE_VERSION)
1919

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

0 commit comments

Comments
 (0)