From 1d58b45e4df29ce9133ea37a54d02fa4a4734d05 Mon Sep 17 00:00:00 2001 From: Louis Capitanchik <contact@louiscap.co> Date: Sun, 11 Dec 2022 14:05:48 +0000 Subject: [PATCH] Log release folders in gitlab build --- .gitlab-ci.yml | 2 ++ Makefile | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6600e0..902e889 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,6 +59,8 @@ package-all: - mkdir -p dist/ - make assets - cp -r assets dist/assets + - ls target/x86_64-unknown-linux-gnu/release/ + - ls target/x86_64-pc-windows-gnu/release/ - cp target/x86_64-unknown-linux-gnu/release/${BINARY_NAME} "dist/${OUTPUT_NAME}" - cp target/x86_64-pc-windows-gnu/release/${BINARY_NAME}.exe "dist/${OUTPUT_NAME}.exe" - cd "${CI_PROJECT_DIR}/dist" && zip -r "windows.zip" "./${OUTPUT_NAME}.exe" ./assets diff --git a/Makefile b/Makefile index d9f31ce..31681c1 100644 --- a/Makefile +++ b/Makefile @@ -63,4 +63,8 @@ clean_dist: top_tail: @echo "================================================" @echo " Building ${PROJECT_NAME}" - @echo "================================================" \ No newline at end of file + @echo "================================================" + +.PHONY: + assets + run \ No newline at end of file -- GitLab