containers
/
tdlib
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
tdlib/ci/set_docker_tag.sh

8 lines
151 B
Bash
Raw Normal View History

2019-02-22 09:13:02 +04:00
#!/usr/bin/env bash
if [[ $CI_BUILD_REF_NAME == "master" ]]; then
export DOCKER_TAG=latest;
else
export DOCKER_TAG="${CI_BUILD_REF_NAME}";
fi