1
0
Fork 0
hudctrl/ci/container-common.sh

11 lines
216 B
Bash

# shellcheck: shell=sh
tag_name() {
echo "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g' -e 's/^[.-]/_/'
}
push() {
tag=$(tag_name $1)
podman push hudctrl:${BUILD_TAG} registry.pyrocufflink.blue/hudctrl:${tag}
}