diff --git a/drone.yaml b/drone.yaml index 7f85e73..f52fe64 100644 --- a/drone.yaml +++ b/drone.yaml @@ -1,18 +1,18 @@ kind: pipeline type: docker name: default -clone: - git: - url: https://git.ronis-0505.ru/ronis_0505/telegram-bot-for-manipulate-orders.git - user: - from_secret: GITEA_USER - password: - from_secret: GITEA_TOKEN + steps: + - name: clone + image: alpine/git + commands: + - git clone https://git.ronis-0505.ru/ronis_0505/telegram-bot-for-manipulate-orders.git . + - name: install-dependencies image: python:3.12 commands: - pip install -r pyproject.toml + - echo "Dependencies installed successfully" - name: build image: docker:dind