bin/.drone.yml

29 lines
403 B
YAML
Raw Normal View History

2023-06-10 16:29:48 +02:00
kind: pipeline
2023-06-10 16:39:30 +02:00
type: docker
2023-06-10 16:29:48 +02:00
name: bin
trigger:
event:
- push
steps:
- name: build
image: rust:slim
commands:
- cargo build --release
2023-06-10 17:34:17 +02:00
2023-06-10 16:29:48 +02:00
- name: pack
when:
branch:
- master
2023-06-10 18:19:43 +02:00
image: plugins/docker
settings:
repo: git2.zettoit.eu/zettoit/bin
username: droneci
password:
2023-06-10 17:15:46 +02:00
from_secret: REGISTRY_PASSWD
2023-06-10 18:19:43 +02:00
registry: git2.zettoit.eu
tags:
- latest
- master