mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 01:38:10 +00:00
9 lines
172 B
Bash
Executable file
9 lines
172 B
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
|
|
|
|
if [[ -n $TRAVIS_TAG ]]; then
|
|
make push TAG="$(cat "VERSION")"
|
|
else
|
|
make push-amd64
|
|
fi
|