with push release
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-08-20 23:50:57 +02:00
parent 0b23975d7c
commit 9907fa1ec5
2 changed files with 21 additions and 0 deletions

20
scripts/push_release.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/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"