mirror of
https://github.com/bloomberg/goldpinger.git
synced 2026-05-06 16:56:47 +00:00
Pushing to DockerHub from the 'after_success' phase was unreliable (triggered by PRs) so this patch changes the process to use a 'deploy' stage script instead. Signed-off-by: Kevin P. Fleming <kpfleming@bloomberg.net>
5 lines
90 B
Bash
Executable File
5 lines
90 B
Bash
Executable File
#!/bin/sh
|
|
|
|
docker login -u "$DOCKER_USER" -p "$DOCKER_PASSWORD" && make tag && make push
|
|
|