File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ jobs:
28
28
node-version : ' 18'
29
29
30
30
- name : Restore dependencies
31
- run : dotnet restore
31
+ run : dotnet restore XtermBlazor.sln
32
32
33
33
- name : Build
34
- run : dotnet build --configuration Release --no-restore
34
+ run : dotnet build XtermBlazor.sln --configuration Release --no-restore
35
35
36
36
- name : Test
37
- run : dotnet test --no-build --verbosity normal --configuration Release
37
+ run : dotnet test XtermBlazor.sln --no-build --verbosity normal --configuration Release
38
38
39
39
- name : Pack (dry run)
40
40
run : dotnet pack XtermBlazor/XtermBlazor.csproj --configuration Release --no-build --output ./nupkgs
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ jobs:
46
46
sed -i "s/<Version>.*<\/Version>/<Version>${VERSION}<\/Version>/" XtermBlazor/XtermBlazor.csproj
47
47
48
48
- name : Restore dependencies
49
- run : dotnet restore
49
+ run : dotnet restore XtermBlazor.sln
50
50
51
51
- name : Build
52
- run : dotnet build --configuration Release --no-restore
52
+ run : dotnet build XtermBlazor.sln --configuration Release --no-restore
53
53
54
54
- name : Pack
55
55
run : dotnet pack XtermBlazor/XtermBlazor.csproj --configuration Release --no-build --output ./nupkgs
You can’t perform that action at this time.
0 commit comments