diff --git a/.drone.yml b/.drone.yml index 63b9ced..6e2d9ab 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,14 +12,14 @@ steps: - name: build image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - cd blazor/ + - cd Blazor/ - dotnet restore Blazor.sln - dotnet build Blazor.sln -c Release --no-restore - name: tests image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - cd blazor/ + - cd Blazor/ - dotnet restore Blazor.sln - dotnet test Blazor.sln --no-restore depends_on: [build] @@ -27,7 +27,7 @@ steps: - name: code-analysis image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6 commands: - - cd blazor/ + - cd Blazor/ - dotnet restore Blazor.sln - dotnet sonarscanner begin /k:$REPO_NAME /d:sonar.host.url=$$$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$$$${PLUGIN_SONAR_TOKEN} - dotnet build Blazor.sln -c Release --no-restore @@ -60,7 +60,7 @@ steps: - name: docker-build image: plugins/docker settings: - dockerfile: blazor/Dockerfile + dockerfile: Blazor/Dockerfile context: . registry: hub.codefirst.iut.uca.fr repo: hub.codefirst.iut.uca.fr/my-group/my-application-client