with push release

This commit is contained in:
Kasper Juul Hermansen 2022-08-20 23:54:50 +02:00
parent 3ee722f795
commit 0babeff695
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
2 changed files with 23 additions and 0 deletions

View File

@ -18,3 +18,5 @@ scripts:
type: shell
setup_ssh:
type: shell
push_release:
type: shell

21
scripts/push_release.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
set -e
tag="$REGISTRY/$SERVICE:${COMMIT_SHA:0:10}"
if [[ -n $DEBUG ]]
then
echo "debug:"
echo " REGISTRY: $REGISTRY"
echo " SERVICE: $SERVICE"
echo " COMMIT_SHA: $COMMIT_SHA"
echo " TMP: $TMP"
fi
echo "docker: logging in"
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
echo "docker: pushing image $tag"
DOCKER_BUILDKIT=1 docker push "$tag"