diff --git a/.github/workflows/master_servermanagers.yml b/.github/workflows/master_servermanagers.yml index ef0d191f..adff7e4a 100644 --- a/.github/workflows/master_servermanagers.yml +++ b/.github/workflows/master_servermanagers.yml @@ -23,16 +23,16 @@ jobs: include-prerelease: true - name: Build with dotnet - run: dotnet build --configuration Release + run: dotnet build ./src/ServerManager.WebApplication/ServerManager.WebApplication.csproj --configuration Release - name: dotnet publish - run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp + run: dotnet publish ./src/ServerManager.WebApplication/ServerManager.WebApplication.csproj -c Release -o ${{env.DOTNET_ROOT}}/webapi - name: Upload artifact for deployment job uses: actions/upload-artifact@v2 with: name: .net-app - path: ${{env.DOTNET_ROOT}}/myapp + path: ${{env.DOTNET_ROOT}}/webapi deploy: runs-on: windows-latest