diff --git a/.drone.yml b/.drone.yml index 286b9cf..9ea659a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,10 +10,9 @@ steps: - name: build image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - cd Sources - - dotnet LeagueOfLegends.sln - - dotnet build LeagueOfLegends.sln -c Release --no-restore - - dotnet publish LeagueOfLegends.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release + - dotnet /drone/src/Sources/LeagueOfLegends.sln + - dotnet build /drone/src/Sources/LeagueOfLegends.sln -c Release --no-restore + - dotnet publish /drone/src/Sources/LeagueOfLegends.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release - name: tests image: mcr.microsoft.com/dotnet/sdk:6.0