diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7730298..1b3b008 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,8 +23,8 @@ # place project specific paths in variables to make the rest of the script more generic variables: - EXE_RELEASE_FOLDER: 'Borepin\bin\Release' - UWP_RELEASE_FOLDER: 'Borepin\Borepin.UWP\ + LIB_RELEASE_FOLDER: 'Borepin\Borepin\bin\Release' + UWP_RELEASE_FOLDER: 'Borepin\Borepin.UWP\bin\x86\Release' TEST_FOLDER: 'Tests\bin\Release' # DEPLOY_FOLDER: 'P:\Projects\YourApp\Builds' NUGET_PATH: 'C:\NuGet\nuget.exe' @@ -50,8 +50,7 @@ build_base: artifacts: expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on paths: - - '$env:EXE_RELEASE_FOLDER\Borepin.exe' # saving exe to copy to deploy folder - - '$env:MSI_RELEASE_FOLDER\YourApp Setup.msi' # saving msi to copy to deploy folder + - '$env:LIB_RELEASE_FOLDER' # saving exe to copy to deploy folder - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests build_UWP: @@ -67,8 +66,7 @@ build_UWP: artifacts: expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on paths: - - '$env:EXE_RELEASE_FOLDER\Borepin.exe' # saving exe to copy to deploy folder - - '$env:MSI_RELEASE_FOLDER\YourApp Setup.msi' # saving msi to copy to deploy folder + - '$env:UWP_RELEASE_FOLDER' # saving exe to copy to deploy folder - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests build_Android: @@ -84,7 +82,7 @@ build_Android: artifacts: expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on paths: - - Borepin/Borepin.Android/bin/Release/ # saving apk to copy to deploy folder + - Borepin/Borepin.Android/bin/Release/com.companyname.borepin-Signed.apk # saving apk to copy to deploy folder - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests build_iOS: