chldapasswd/.drone.yml

36 lines
576 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
steps:
- name: build
image: golang:1
commands:
- apt-get update && apt-get install -y build-essential git
- go get -d
- go build -ldflags="-s -w" -o chldapasswd
- name: docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: nemunaire/chldapasswd
tags: latest
when:
branch:
- master
trigger:
event:
- cron
- push
- tag