From c6f6569e3adfbcc0f1797900ebdc521f9b8da0ff Mon Sep 17 00:00:00 2001 From: Nicolas BLONDEAU Date: Wed, 3 May 2023 12:29:16 +0200 Subject: [PATCH] Test sans "" autour du nom de la solution --- .drone.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5ff4e56..d6806ec 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,6 @@ kind: pipeline type: docker -name: Minecraft_CI_Pipeline +name: MineGuide_CI_Pipeline trigger: branch: @@ -10,12 +10,12 @@ trigger: steps: - name: build - image: mcr.microsoft.com/dotnet/sdk:7.0 + image: hub.codefirst.iut.uca.fr/marc.chevaldonne/codefirst-dotnet7-maui:latest commands: - cd Sources/ - - dotnet restore "MineGuide.sln" - - dotnet build "MineGuide.sln" -c Release --no-restore - - dotnet publish "MineGuide.sln" -c Release --no-restore + - dotnet restore MineGuide.sln + - dotnet build MineGuide.sln -c Release --no-restore + - dotnet publish MineGuide.sln -c Release --no-restore - name: tests image: mcr.microsoft.com/dotnet/sdk:7.0