File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,16 @@ jobs:
2222 dotnet-version : ' 8.x'
2323
2424 - name : Build with dotnet
25- run : dotnet build --configuration Release
25+ # run: dotnet build --configuration Release
26+ run : dotnet build .\BazorTicketMasterApp\BlazorTicketmasterApp.csproj --configuration Release
2627
2728 - name : Run tests
28- run : dotnet test --no-build --verbosity normal
29+ # run: dotnet test --no-build --verbosity normal
30+ run : dotnet test .\BazorTicketMasterApp\BlazorTicketMasterApp.UnitTests\BlazorTicketMasterApp.UnitTests.csproj --no-build --verbosity normal
2931
3032 - name : dotnet publish
31- run : dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
33+ # run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
34+ run : dotnet publish .\BazorTicketMasterApp\BlazorTicketmasterApp.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp
3235
3336 - name : Upload artifact for deployment job
3437 uses : actions/upload-artifact@v4
6568 app-name : ' BlazorTicketmasterApp'
6669 slot-name : ' Production'
6770 package : .
68-
71+
You can’t perform that action at this time.
0 commit comments