conduit/.drone.yml
Evan Reichard c83ce9e4e0
All checks were successful
continuous-integration/drone Build is passing
continuous-integration/drone/push Build is passing
fix drone
2025-09-20 18:40:26 -04:00

36 lines
603 B
YAML

kind: pipeline
type: docker
name: default
trigger:
branch:
- main
steps:
# Unit Tests
- name: tests
image: golang
commands:
- make tests
# Fetch tags
- name: fetch tags
image: alpine/git
commands:
- git fetch --tags
# Publish docker image
- name: publish docker
image: plugins/docker
settings:
repo: gitea.va.reichard.io/evan/conduit
registry: gitea.va.reichard.io
tags:
- dev
custom_dns:
- 8.8.8.8
username:
from_secret: docker_username
password:
from_secret: docker_password