Files
planetposen-mail/.drone.yml

38 lines
643 B
YAML

---
kind: pipeline
type: docker
name: Build and publish
platform:
os: linux
arch: amd64
steps:
- name: build
image: golang
commands:
- make build
- name: Build and publish docker image
image: plugins/docker
settings:
registry: ghcr.io
repo: ghcr.io/kevinmidboe/planetposen-mail
dockerfile: Dockerfile
username:
from_secret: GITHUB_USERNAME
password:
from_secret: GITHUB_PASSWORD
tags: latest
when:
event:
- push
branch:
- master
---
kind: signature
hmac: 80190c8ebd46a70ae4d3f5584a2d4e82ff3e2a376c209877f4c62a09a246dbc5
...