add artifact collection to gitlab ci

This commit is contained in:
andreas 2020-01-31 20:48:46 +01:00
parent 6cdfcaa130
commit 8062e4b2f2

View File

@ -5,8 +5,13 @@ rust-latest:
stage: build stage: build
image: rust:latest image: rust:latest
script: script:
- cargo build --verbose - cargo build
- cargo test --verbose - cargo test
tags: tags:
- local - local
artifacts:
paths:
- target/debug/telegram-leetbot
name: "leetbot-debug"
expose_as: "leetbot"