From 02c356598b9875cd8eef3fc69ebb8a36b7de843a Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Wed, 5 Jan 2022 15:45:29 +0100 Subject: [PATCH] Aggiunto altre installazioni x CORE.WRKLOG --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed44111..fe7272c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -213,6 +213,20 @@ Smart:deploy: - '& "$env:MSBUILD_PATH" /p:m=8 /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IISDEV.pubxml /p:RunCodeAnalysis=false /p:Configuration=IIS02 /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal GPW_Smart/GPW_Smart.csproj' needs: ["Smart:build"] + +CORE.WLOG:deploy: + stage: deploy + tags: + - win + only: + - develop + needs: ["CORE.WLOG:build"] + script: + # IIS 02 + - dotnet publish -p:PublishProfile=IIS02.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=viadante16 -p:AllowUntrustedCertificate=true GPW.CORE.UI/GPW.CORE.UI.csproj + # IIS DEV + - dotnet publish -p:PublishProfile=W2019-IIS-DEV.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=viadante16 -p:AllowUntrustedCertificate=true GPW.CORE.UI/GPW.CORE.UI.csproj + AC:install: stage: installer tags: