mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-02-22 18:19:29 +00:00
updated travis and deploy to have new branch name Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
7 lines
234 B
Bash
Executable File
7 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${TRAVIS_BRANCH}" == "csi-v0.3" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
|
|
docker login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
|
|
make push-image-rbdplugin push-image-cephfsplugin
|
|
fi
|