From 1e1332eb209fd46772d805cd52eab79bf9c1423c Mon Sep 17 00:00:00 2001 From: Marvin Steadfast Date: Fri, 16 Apr 2021 14:26:44 +0200 Subject: [PATCH] ci: fixes depends_on error --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3008998..6ebfb3e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,14 +13,15 @@ steps: commands: - git submodule init - git submodule update - depends_on: tags + depends_on: + - tags - name: lint image: golangci/golangci-lint:latest commands: - make lint depends_on: - - submodule + - submodules - name: test image: golang:latest