From 38a9fe0f3649f55826398a4edb5f3420b111de10 Mon Sep 17 00:00:00 2001 From: Julian Bensch Date: Thu, 12 Jan 2023 16:05:24 +0100 Subject: [PATCH] Removed unused build step --- .drone.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 83f63a8..f8fa4e4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,12 +3,11 @@ kind: pipeline type: docker name: default steps: -# Build docker image and push to docker hub -- name: build - image: golang:1.19-alpine - pull: if-not-exists - commands: - - go build -o cmd/app ./src/main.go +# - name: build +# image: golang:1.19-alpine +# pull: if-not-exists +# commands: +# - go build -o cmd/app ./src/main.go - name: "lint" image: golangci/golangci-lint:v1.50