From cf40f324075320e7ef8ec09899106235161803ca Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 14 Sep 2016 20:56:35 +0200 Subject: [PATCH] GitLab CI: installers are now just renamed in build dir. Squashed commit of the following: commit 71a06418623b7bfb6e21a0d54ec9dc5b6eb975a7 Author: Dominik Picheta Date: Wed Sep 14 16:46:39 2016 +0200 Don't move installers to web\ --- .gitlab-ci.yml | 2 +- ci/nsis_build.bat | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca0bb00ef8..7e34dcc4c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,7 @@ deploy-windows: - call ci\nsis_build.bat artifacts: paths: - - web\upload\download\* + - build/*.exe expire_in: 1 week tags: - windows diff --git a/ci/nsis_build.bat b/ci/nsis_build.bat index 309fdb0d8a..74bb663a09 100644 --- a/ci/nsis_build.bat +++ b/ci/nsis_build.bat @@ -47,7 +47,7 @@ copy /y nimsuggest.exe ..\bin || exit /b cd .. koch nsis -d:release || exit /b dir build -move /y build\nim_%NIMVER%.exe web\upload\download\nim-%NIMVER%_x32.exe || exit /b +move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x32.exe || exit /b ReM Build Win64 version: @@ -62,4 +62,4 @@ nim c -d:release --noNimblePath --path:.. nimsuggest || exit /b copy /y nimsuggest.exe ..\bin || exit /b cd .. koch nsis -d:release || exit /b -move /y build\nim_%NIMVER%.exe web\upload\download\nim-%NIMVER%_x64.exe || exit /b +move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x64.exe || exit /b