1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Merge pull request #393 from nirmata/392_bug

test build
This commit is contained in:
Shivkumar Dudhani 2019-10-17 14:45:00 -07:00 committed by GitHub
commit 37c25daa17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,11 @@ script:
after_script:
- curl -d "repo=https://github.com/nirmata/kyverno" https://goreportcard.com/checks
# only push images if the branch is master
after_success:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- make docker-publish
- |
if [ $TRAVIS_PULL_REQUEST == 'false' ]
then
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
make docker-publish
fi