From ef7dbe6c8037e63e221e754443f28b14f36ac4e7 Mon Sep 17 00:00:00 2001 From: DHCPCD Date: Thu, 31 Mar 2022 01:18:42 +0300 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f4bcdc2..76f51c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,10 @@ build-job: # This job runs in the build stage, which runs first. - "dotnet clean" - "dotnet restore" - "dotnet build -c Release --output out/ --no-restore" - - "zip -r ${WINDOWS_X64_BINARY} out" + - "zip -r bin/${WINDOWS_X64_BINARY} out" + artifacts: + paths: + - bin/ upload: -- GitLab