From 8062e4b2f26f46f56224183c0c901a92514866a5 Mon Sep 17 00:00:00 2001 From: Andreas Larsen Date: Fri, 31 Jan 2020 20:48:46 +0100 Subject: [PATCH] add artifact collection to gitlab ci --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ba4d10..ad303c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,8 +5,13 @@ rust-latest: stage: build image: rust:latest script: - - cargo build --verbose - - cargo test --verbose + - cargo build + - cargo test tags: - local + artifacts: + paths: + - target/debug/telegram-leetbot + name: "leetbot-debug" + expose_as: "leetbot"