Return to parent dir after build

This commit is contained in:
Deon George 2019-01-28 11:25:49 +11:00
parent 4aa5ce63e2
commit 81494e5c48
1 changed files with 3 additions and 3 deletions

View File

@ -14,10 +14,10 @@ build:x86_64:
stage: build
script:
- apt-get update
- cd libcl; dpkg-buildpackage -us -uc
- cd libcl; dpkg-buildpackage -us -uc; cd ..
- mkdir build
- ls -al ../
- mv ../${CI_PROJECT_NAME}*.deb build
- ls -al ./
- mv ./${CI_PROJECT_NAME}*.deb ./build/
tags:
- apt
- x86_64