From 09aebbafb40c673e1fe4285b73f082b975538433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Delattre?= Date: Sun, 22 Aug 2021 11:50:01 -1000 Subject: [PATCH] Update drone config --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index ed8ea40..84ff5dd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,10 +16,10 @@ steps: - npm run-script build - name: backend - image: golang:1.16.7-alpine3.14 + image: golang:1.17.0-alpine3.14 commands: - apk --no-cache add git - - GO111MODULE=off go get -tags 'postgres' -u github.com/golang-migrate/migrate/cmd/migrate + - go get -tags 'postgres' -u github.com/golang-migrate/migrate/cmd/migrate@latest - cp $$GOPATH/bin/migrate migrate - CGO_ENABLED=0 go build -ldflags '-extldflags "-static"' -trimpath -v -o canapeapp/app backend/*.go