11 lines
307 B
Bash
11 lines
307 B
Bash
#!/bin/bash -ex
|
|
|
|
. ci/common.sh
|
|
|
|
remote=git.pyrocufflink.blue/dustin/dynk8s-provisioner
|
|
t=$(tag_name ${BUILD_TAG})
|
|
podman push --creds="${PODMAN_AUTH}" dynk8s-provider:${t} ${remote}:${t}
|
|
if [ "${BRANCH_NAME}" = master ]; then
|
|
podman push --creds="${PODMAN_AUTH}" dynk8s-provider:${t} ${remote}:${t}
|
|
fi
|