From 33401e1aeacff41ac055f207a63a72636136c246 Mon Sep 17 00:00:00 2001 From: Timur Demin Date: Sat, 8 Aug 2020 21:58:50 +0500 Subject: [PATCH] Use non-Alpine images to avoid unexpected problems with CI --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6f757f6..0a437f2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ steps: when: event: tag - name: test - image: golang:1.14-alpine + image: golang:1.14 commands: - go test -v . when: @@ -17,7 +17,7 @@ steps: exclude: - tag - name: release - image: golang:1.14-alpine + image: golang:1.14 environment: GITEA_TOKEN: from_secret: goreleaser_gitea_token