mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Travis Deploy Docker Push
|
|
set -e
|
|
|
|
docker info
|
|
GOOS=linux make build
|
|
make docker-image
|
|
docker login -u="$DOCKER_USERNAME" -p=$DOCKER_PASSWORD quay.io
|
|
make docker-push
|
|
|