Skip to content

Commit aff3124

Browse files
Update master_blazorticketmasterapp.yml
1 parent 36c6aeb commit aff3124

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/master_blazorticketmasterapp.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff 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
@@ -65,4 +68,4 @@ jobs:
6568
app-name: 'BlazorTicketmasterApp'
6669
slot-name: 'Production'
6770
package: .
68-
71+

0 commit comments

Comments
 (0)