From 88cf088d951eb6781375cb980cf8bddc37534a8c Mon Sep 17 00:00:00 2001 From: schnie Date: Thu, 15 Nov 2018 11:25:36 -0500 Subject: [PATCH] Add comments to drone --- .drone.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 41fa4cc8a..8513e5236 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,16 +3,19 @@ workspace: path: src/github.com/astronomerio/astro-cli pipeline: + # Build binary build: image: golang commands: - make build - + + # Test the code test: image: golang commands: - make test + # Cut releases with goreleaser when tagged push: image: goreleaser/goreleaser:v0.86 secrets: [ github_token ]