File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
24
24
# 编译和发布应用程序
25
25
- name : Build for Linux x64
26
- run : dotnet publish -c Release -r linux-x64 --self-contained -o output/linux-x64
26
+ run : dotnet publish "./CameraCaptureBot.Core/CameraCaptureBot.Core.csproj" -c Release -r linux-x64 --self-contained -o output/linux-x64
27
27
28
28
- name : Build for Windows x64
29
- run : dotnet publish -c Release -r win-x64 --self-contained -o output/win-x64
29
+ run : dotnet publish "./CameraCaptureBot.Core/CameraCaptureBot.Core.csproj" -c Release -r win-x64 --self-contained -o output/win-x64
30
30
31
31
- name : Build for Portable (any-x64)
32
- run : dotnet publish -c Release -r any -o output/any-x64
32
+ run : dotnet publish "./CameraCaptureBot.Core/CameraCaptureBot.Core.csproj" -c Release -r any -o output/any-x64
33
33
34
34
# 压缩编译结果
35
35
- name : Zip Linux x64
You can’t perform that action at this time.
0 commit comments