diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..32bc16a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +--- +kind: pipeline +type: docker +name: build + +steps: +- name: docker + image: plugins/docker + settings: + username: + from_secret: registry_user + password: + from_secret: registry_password + repo: fat0troll/tdlib + auto_tag: true \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index c1ebe6e..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -image: docker:stable - -variables: - DOCKER_HOST: tcp://docker:2375/ - DOCKER_DRIVER: overlay2 - CONTAINER_NAME: lab.wtfteam.pro:4567/containers/tdlib - -services: - - docker:dind - -stages: - - build - -before_script: - - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - -build: - stage: build - script: - - source ci/set_docker_tag.sh - - docker build -t $CONTAINER_NAME:$DOCKER_TAG . - - docker push $CONTAINER_NAME:$DOCKER_TAG - only: - - tags - - master diff --git a/ci/set_docker_tag.sh b/ci/set_docker_tag.sh deleted file mode 100644 index 2d9510b..0000000 --- a/ci/set_docker_tag.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -if [[ $CI_BUILD_REF_NAME == "master" ]]; then - export DOCKER_TAG=latest; -else - export DOCKER_TAG="${CI_BUILD_REF_NAME}"; -fi