From f84636cd0ebe7bd799f5d998de1381adbab584fe Mon Sep 17 00:00:00 2001 From: Cool Fire Date: Wed, 10 Oct 2018 22:05:52 +0200 Subject: [PATCH] Make sure we can just grab the binary without the folder structure --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 54e39491..bb959245 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,9 +13,10 @@ ubuntu1804: - cd .. - meson --buildtype release build - ninja -C build + - cp build/src/fe-gtk/hexchat . artifacts: paths: - - build/src/fe-gtk/hexchat + - hexchat debian9: image: debian:9 stage: build @@ -28,7 +29,8 @@ debian9: - cd .. - meson --buildtype release build - ninja -C build + - cp build/src/fe-gtk/hexchat . artifacts: paths: - - build/src/fe-gtk/hexchat + - hexchat -- GitLab