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