--- 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-bindata - go generate -v - go get -v -d - go build -v -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