mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
7 lines
213 B
Bash
7 lines
213 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
|
||
|
docker login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
|
||
|
make push-rbdplugin-container
|
||
|
fi
|