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