bob/.drone.yml
Simon Petit 46d6a82de7
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
adding repo in yaml config
2024-12-05 16:26:21 +01:00

28 lines
467 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Test
image: debian:12-slim
commands:
- apt-get update
- apt-get install -y make
- make test
- name: Build image
image: plugins/docker
settings:
username:
from_secret: gitea_username
password:
from_secret: gitea_password
registry:
from_secret: gitea_container_registry
repo:
from_secret: gitea_repo
auto_tag: true
when:
event:
- tag