mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
7 lines
233 B
Bash
Executable File
7 lines
233 B
Bash
Executable File
#!/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-image-rbdplugin push-image-cephfsplugin
|
|
fi
|