bin/.drone.yml
Paul Z 60dbf5a999
Some checks failed
continuous-integration/drone/push Build is failing
drone ci
2023-06-10 16:39:30 +02:00

22 lines
396 B
YAML

kind: pipeline
type: docker
name: bin
trigger:
event:
- push
steps:
- name: build
image: rust:slim
commands:
- cargo build --release
- name: pack
when:
branch:
- master
image: docker:latest
commands:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE/master . -f Dockerfile
- docker push $CI_REGISTRY_IMAGE/master