mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
* Add make targets for vendor, docker-image, and tools * Move scripts into the scripts folder
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/bin/bash -e
|
|
# Travis Deploy Docker Push
|
|
|
|
docker info
|
|
GOOS=linux make build
|
|
make docker-image
|
|
docker login -u="$DOCKER_USERNAME" -p=$DOCKER_PASSWORD quay.io
|
|
make docker-push
|
|
|