diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6600e095fb7f87738668cfd19bbbce0b023a246..902e889a9eecdabc3e954d5fa586b00c6c00c8bf 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 d9f31ce08f37dd9b13bfb1f81f81f5de6d0afaba..31681c14eca7f06a67118024811e0bd3230cc056 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