GitLab CI: installers are now just renamed in build dir.

Squashed commit of the following:

commit 71a06418623b7bfb6e21a0d54ec9dc5b6eb975a7
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Wed Sep 14 16:46:39 2016 +0200

    Don't move installers to web\
This commit is contained in:
Dominik Picheta
2016-09-14 20:56:35 +02:00
parent 6a1b8e691f
commit cf40f32407
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ deploy-windows:
- call ci\nsis_build.bat
artifacts:
paths:
- web\upload\download\*
- build/*.exe
expire_in: 1 week
tags:
- windows

View File

@@ -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