mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
* Go builds should not require sudo. Docker builds should unless it has been given root group permissions, which is not recommended. Keep Go binary and Docker builds separate.
9 lines
186 B
Bash
Executable File
9 lines
186 B
Bash
Executable File
#!/bin/bash -e
|
|
# Travis Deploy Docker Push
|
|
|
|
GOOS=linux ./build
|
|
docker info
|
|
./docker-build
|
|
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p=$DOCKER_PASSWORD quay.io
|
|
./docker-push
|