From def213127a33741b0439b7d1007ea8c15158a846 Mon Sep 17 00:00:00 2001 From: olegfomenko Date: Tue, 14 May 2024 14:15:57 +0300 Subject: [PATCH] fix werf --- werf.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/werf.yaml b/werf.yaml index 1782e33..99a12e3 100644 --- a/werf.yaml +++ b/werf.yaml @@ -14,11 +14,7 @@ git: shell: install: - apk add git build-base - - go env -w GOPRIVATE=github.com/* - - go env -w GONOSUMDB=github.com/* - - go env -w GONOPROXY=github.com/* - cd /go/src/github.com/rarimo/tss-svc - - go mod tidy setup: - go env -w GOPRIVATE=github.com/* - go env -w GONOSUMDB=github.com/* @@ -26,6 +22,7 @@ shell: - export CGO_ENABLED=1 - export GOOS=linux - cd /go/src/github.com/rarimo/tss-svc + - go mod tidy - go build -o /usr/local/bin/tss-svc /go/src/github.com/rarimo/tss-svc ---