From 3d7da2b08c1ed96c80edd7e7a90343dafcae2bda Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Sun, 5 Aug 2018 19:47:29 -0700 Subject: [PATCH] Give downloaded artifacts a meaningful name --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f13961..e6a16c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,7 +35,7 @@ compile: stage: build script: - go get github.com/mitchellh/gox - - gox -output="builds/{{.Dir}}_{{.OS}}_{{.Arch}}" -parallel=4 + - gox -output="eth-log-alerting-builds/{{.Dir}}_{{.OS}}_{{.Arch}}" -parallel=4 artifacts: paths: - - builds/ + - eth-log-alerting-builds/ -- GitLab