File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ jobs:
22
22
- name : Restore project
23
23
run : dotnet restore OverwatchToolchain.sln --verbosity m -r win-x64 -p:TargetFramework=net9.0
24
24
- name : Build Release
25
- run : dotnet publish -c Release -r win-x64 -o dist/Release --self-contained true
25
+ run : dotnet publish OverwatchToolchain.slnx -c Release -r win-x64 -o dist/Release --self-contained true
26
26
# --self-contained for https://github.com/dotnet/sdk/issues/29642
27
27
- name : Upload Release
28
28
uses : actions/upload-artifact@v4
29
29
with :
30
30
name : toolchain-release
31
31
path : dist/Release
32
32
- name : Build Debug
33
- run : dotnet publish -c Debug -r win-x64 -o dist/Debug --self-contained true
33
+ run : dotnet publish OverwatchToolchain.slnx -c Debug -r win-x64 -o dist/Debug --self-contained true
34
34
- name : Upload Debug
35
35
uses : actions/upload-artifact@v4
36
36
with :
You can’t perform that action at this time.
0 commit comments